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
v20.19.0
Linux XXX x.xx.xxx.x-microsoft-standard-WSL2 #1 SMP Fri Mar 29 23:14:13 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
No response
Intl.NumberFormat("it-IT").format(1234.56);
Always
The expected output is "1.234,56"
The previous node version 20.18.x formatted the number with the thousands separator.
I see the output "1234,56"
Between 20.18.x and 20.19.0 the output changed from "1.234,56" to "1234,56".
Now the thousands separator is missing.
Adding one more digit the thousands separator is correctly showed.
So it seems the bug occurs only in the range 1000 < x < 9999
The text was updated successfully, but these errors were encountered:
This is related to CLDR changes in ICU 76.1. Refs:
Sorry, something went wrong.
No branches or pull requests
Version
v20.19.0
Platform
Subsystem
No response
What steps will reproduce the bug?
Intl.NumberFormat("it-IT").format(1234.56);
How often does it reproduce? Is there a required condition?
Always
What is the expected behavior? Why is that the expected behavior?
The expected output is "1.234,56"
The previous node version 20.18.x formatted the number with the thousands separator.
What do you see instead?
I see the output "1234,56"
Between 20.18.x and 20.19.0 the output changed from "1.234,56" to "1234,56".
Now the thousands separator is missing.
Additional information
Adding one more digit the thousands separator is correctly showed.
So it seems the bug occurs only in the range 1000 < x < 9999
The text was updated successfully, but these errors were encountered: