Rúnar Berg Baugsson Sigríðarson
Rúnar Berg Baugsson Sigríðarson
Any options for those of us that are using vite with vue 2?
Related d3/d3-scale#177
Things to keep in mind: [Temporals](https://tc39.es/proposal-temporal) are a stage 2 proposal and include a [duration](https://tc39.es/proposal-temporal/docs/duration.html) data structure. This will make duration arithmetic a lot easier and robust. Perhaps a new...
Should we go ahead with #70 since there is no consensus on adding currency formatting?
@nimisha1921 I’ve just been rolling my own using [`Math.log2`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log2) and [`Intl.NumberFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat): ```ts const PREFIXES = ['', 'Ki', 'Mi', 'Gi', 'Ti', 'Pi', 'Ei', 'Zi', 'Yi']; function binaryFormatParts(num: number) { if (!Number.isFinite(num)...
Advocates of functional programming (FP) have very much been part of the discussion post and prior to the decision to go with hack. (See e.g. [here](https://gist.github.com/tabatkins/1261b108b9e6cdab5ad5df4b8021bcb5#gistcomment-3887733)). However I’m not aware...
From where I stand—as a layperson in language design and a mere user of the JavaScript language—there are two possibilities here. Either the TC39 process was hacked in order to...
> Thinking back, there are so many times when a JavaScript library with an expressive, declarative, tacit style API (D3, JQuery, etc.) has come around and I've wanted to extend...
@mAAdhaTTah > Point-free programming is not a goal in and of itself. It's a tool for achieving other goals in your code. I would argue that this is a false...
We might be arguing semantics, but even if you are right and the end goal is better code (as opposed to point free code), I still think that enabling point...