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
if you ever plan to put unicode characters into URL, don't use this library, because it's encoding to URI is totally broken for UTF8 strings.
For example a string: špác is serialized like: %u0161p%E1c'
špác
%u0161p%E1c'
When in fact, it should be:
encodeURIComponent('špác') "%C5%A1p%C3%A1c"
The text was updated successfully, but these errors were encountered:
\u161 is the proper unicode character for š http://www.amp-what.com/unicode/search/latin%20small%20letter%20s%20hacek and \uE1 is the proper unicode character for á http://www.amp-what.com/unicode/search/latin%20small%20letter%20a%20acute
You seem to be hoping for double-byte unicode character support. I don't think the library is at fault here.
Sorry, something went wrong.
No branches or pull requests
if you ever plan to put unicode characters into URL, don't use this library, because it's encoding to URI is totally broken for UTF8 strings.
For example a string:
špác
is serialized like:%u0161p%E1c'
When in fact, it should be:
The text was updated successfully, but these errors were encountered: