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
Domain names are case-insensitive and library has problem with uppercase.
punnycode.toASCII('ÜBER.COM');
xn--BER-ska.COM good
xn--BER-ska.COM
punycode.toUnicode('xn--BER-ska.COM');
Über.COM not good because case format is lost
Über.COM
punycode.toUnicode('XN--BER-SKA.COM');
XN--BER-SKA.COM not good
XN--BER-SKA.COM
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Domain names are case-insensitive and library has problem with uppercase.
xn--BER-ska.COM
goodÜber.COM
not good because case format is lostXN--BER-SKA.COM
not goodThe text was updated successfully, but these errors were encountered: