Shane F. Carr

Results 1795 comments of Shane F. Carr

Discussion from 2021-09-09 TC39-TG2: https://github.com/tc39/ecma402/blob/master/meetings/notes-2021-09-09.md#presumptive-incompatible-change-in-future-edition-erroneuosly-listed Conclusion: There is something odd going on; the original PR, https://github.com/tc39/ecma402/pull/471, is where the text in question originated, but how did the text get into...

Good question. I don't see why the NumberFormat objects need to be created in the format function; it seems like they should be created in the constructor. Note that the...

Let's focus this particular issue on `navigator.locales` + `onlocaleschange`. - The main Intl.Locale issue is #106 - The part about making Intl APIs accept extension tags should be handled in...

Do we need navigator.locales when you can do this? ```javascript let locales = navigator.languages.map((v) => new Intl.Locale(v)); ```

Blocked pending conclusion on #416

@aphillips said in https://github.com/tc39/proposal-intl-locale/issues/84: > So this morning I was doing a code review of some Typescript code (implementing message format) and stumbled over a developer using `new Intl.NumberFormat().resolvedOptions().locale` to...

Yes. We have a start in https://github.com/tc39/ecma402/blob/master/docs/style-guide.md, and we should expand that document to cover additional conventions.

2022-07-07 consensus: https://github.com/tc39/ecma402/blob/master/meetings/notes-2022-07-07.md#relax-the-ordering-requirement-on-formatrange-and-selectrange-functions

> why supported calendars when we don't have supported locales Good question. Locales are used only for output. Programmers should generally not use the result of `.format` operations for any...