var nf = Intl.NumberFormat(['en-in'], {style:'currency', currency:'INR',
currencyDisplay:'symbol'});
nf.format(12345.67);
What is the expected output? What do you see instead?
Expected: ₹12,345.67
Seen: Rs.12,345.67
What version of the product are you using? On what operating system?
Chrome Canary on OS X
Please provide any additional information below.
Note: Firefox returns the expected output with the ₹ symbol.
Ref: https://github.com/yahoo/react-intl/issues/231
Original issue reported on code.google.com by i...@seekshiva.in on 1 Dec 2015 at 8:06
var nf = Intl.NumberFormat(['en-in'], {style:'currency', currency:'INR', currencyDisplay:'symbol'}); nf.format(12345.67);
Original issue reported on code.google.com by
i...@seekshiva.in
on 1 Dec 2015 at 8:06