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 a number is outputted by my razer view, in french, thousand separator is a char(160), not a space.
To be unable to unformat, I have to change char(160) to a space and then call unformat.
Can the unformat method support both blank and char(160)?
My workaround is :
total += numbro.unformat(value.replace(/\xA0/g," "));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When a number is outputted by my razer view, in french, thousand separator is a char(160), not a space.
To be unable to unformat, I have to change char(160) to a space and then call unformat.
Can the unformat method support both blank and char(160)?
My workaround is :
total += numbro.unformat(value.replace(/\xA0/g," "));
The text was updated successfully, but these errors were encountered: