-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need "symbo-alt-narrow" for Int.NumberFormat options.currencyDisplay #200
Comments
This is covered as part of https://github.com/tc39-transfer/proposal-unified-intl-numberformat Will be available in |
This comment has been minimized.
This comment has been minimized.
add support for `currencyDisplay`: `narrowSymbol` polyfill for tc39/ecma402#200
CLDR was changed to use But apart from that change, the js> print(new Intl.NumberFormat('th', { style: 'currency', currency: 'SYP', currencyDisplay: 'symbol' }).format(130))
SYP 130.00
js> print(new Intl.NumberFormat('th', { style: 'currency', currency: 'SYP', currencyDisplay: 'narrowSymbol' }).format(130))
£130.00 |
Yep, the proposal is Stage 4 and merged. Closing as Fixed |
add support for `currencyDisplay`: `narrowSymbol` polyfill for tc39/ecma402#200
This feature will be available starting Firefox 78 (release today, not sure if automatic updates have already started). |
Even though this is defined in the CLDR, I'm still not sure if it is a expectation for "symbol".
So I'm thinking that we could use the "symbol-alt-narrow" defined in CLDR to match our product's requirements.
The text was updated successfully, but these errors were encountered: