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
var n1 = '\u01D1'.normalize() ; var n2 = '\u004F\u030C'.normalize(); console.log(n1===n2);
this print "true" in Chrome, but print "false" in iojs.
The text was updated successfully, but these errors were encountered:
This is because Intl support is not enabled by default. If you compile with ICU support, your example will work correctly.
Sorry, something went wrong.
Without Intl, String.prototype.normalize does nothing
thx a lot :) @targos
Intl
No branches or pull requests
this print "true" in Chrome, but print "false" in iojs.
The text was updated successfully, but these errors were encountered: