-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
URL encode doesn't encode all characters #14
Comments
DevToys shows the output of encodeURI(): this%20&%20that
encodeURIComponent(): this%20%26%20that See: |
Just ran into this again when trying to run |
Wild that you responded eight hours ago after months and I just coincidentally ran into the problem again today. The universe is weird! |
My code in the go.dev link also works on this example. I will submit a PR later :) |
Have you completed the pull request for this feature? |
I haven't. I have other priorities right now. |
I'm trying to encode "this & that" and it's produces
this%20&%20that
instead ofthis%20%26%20that
The text was updated successfully, but these errors were encountered: