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
%2B
+
Reported by @Kolobok12309 (#31 (comment))
Current behavior:
normalizeURL('/test%2Bfile.txt') = '/test+file.txt'
Expected behavior:
normalizeURL('/test%2Bfile.txt') = '/test%2Bfile.txt'
The text was updated successfully, but these errors were encountered:
500885b
fixed in 0.7.9
Sorry, something went wrong.
So, according to RFC3986 I think that we have some unexpected behavior for now, because plus char is reserved as delimiter.
Current:
normalizeURL('/another+test%2Bfile.txt') = '/another%2Btest%2Bfile.txt'
Expected:
normalizeURL('/another+test%2Bfile.txt') = '/another+test%2Bfile.txt'
No branches or pull requests
Reported by @Kolobok12309 (#31 (comment))
Current behavior:
Expected behavior:
The text was updated successfully, but these errors were encountered: