Isaac Cambron
Isaac Cambron
@richerdalgonquin Are you also running `moment-timezone`, by chance? If so, you're probably seeing this: https://github.com/icambron/twix.js/issues/102
I've always wanted to do this, but I haven't gotten to it. I think it's about adding a `group` field (or in this case, a `data-group` attribute) and then changing...
@wusyong A couple questions on this: 1. Is this object helpful for the macos case? https://developer.apple.com/documentation/webkit/wkwebsitedatastore?changes=latest_minor. I tried to see where it would fit into WKWebView's WebContext implementation, but got...
Internal mutation is ok and is important for performance; these mutations in Luxon are just memoization. I think the issue is that we're not hiding it from Vue; i.e. Luxon's...
This needs unit tests
Yes, I think this is a bug. It looks like what's happening is that Luxon is still telling Intl to use the Latin numbering system, whereas it should be letting...
This didn't turn out to be what I thought it would be at all. First, just to simplify things a bit: there's no issue with `toLocaleString`; it's just that `TIME_SIMPLE`...
The Intl API doesn't guarantee that it will only return the thing you ask for. Here's an example from English: ```js Intl.DateTimeFormat("en-us", { era: "long" }).format() //=> '9 22, 2019...
I think the bug on the `DateTimeFormat` side is not including the symbol in the `value` portion. For example here is how the Intl polyfill handles it: ```js intlPoly.DateTimeFormat("ja-JP", {...