We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running the following
var Globalize = require( "globalize" ); Globalize.load( require( "cldr-data" ).entireSupplemental() ); Globalize.load( require( "cldr-data" ).entireMainFor( "en", "es", "bg" ) ); console.log("Globalize curr with formatCurrency:" + Globalize("bg").formatCurrency(11231241223, "BGN", { compact: "short" })); console.log("Globalize curr with currencyFormatter:" + Globalize("bg").currencyFormatter("BGN", { compact: "short" })(11231241223));
we get:
Globalize curr with formatCurrency:11 млрд'.' лв. Globalize curr with currencyFormatter:11 млрд'.' лв.
I believe this is incorrect, and that the single quotes should not be there
The data is coming, I believe, from here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running the following
we get:
I believe this is incorrect, and that the single quotes should not be there
The data is coming, I believe, from here
The text was updated successfully, but these errors were encountered: