You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Tue, Oct 15, 2019, 9:04 PM handsfelloff ***@***.***> wrote:
Currently Intl.NumberFormat option notation is not supported.
i.e.
outputs: 1,234```
rather than the desired notation form:
Intl.NumberFormat("en",{notation: "compact"}).format(1234)
outputs: 1.2k
Notation prop above is being stripped by `number.ts` NUMBER_FORMAT_OPTIONS
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1501>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABQM34UH7GWGF2ETSNS64DQOXEWVANCNFSM4JA5DX4A>
.
Currently
Intl.NumberFormat
optionnotation
is not supported.i.e.
outputs: 1,234
rather than the desired notation form:
outputs: 1.2k
The property notation above is being stripped since it is not included in
number.ts
NUMBER_FORMAT_OPTIONSThe text was updated successfully, but these errors were encountered: