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
Example:
numeral(999.999).format('0,0.[00] a')
The result is "1", not "1 k".
Also in another example:
numeral(999999.999).format('0,0.[00] a')
The result is "1 k", not "1 m".
The text was updated successfully, but these errors were encountered:
I have a similar problem, but there should be no spaces in your formatting.
// should be 1k console.log(numeral(999.999).format("0,0.[00]a")); // 1,000 // that's right console.log(numeral(999999.999).format("0,0.[00]a")); // 1m
Sorry, something went wrong.
No branches or pull requests
Example:
numeral(999.999).format('0,0.[00] a')
The result is "1", not "1 k".
Also in another example:
numeral(999999.999).format('0,0.[00] a')
The result is "1 k", not "1 m".
The text was updated successfully, but these errors were encountered: