Closed
Description
The following code:
new URLSearchParams(new URL('https://example.com/?q1=foo&q2=foo+bar&q3=foo bar&q4=foo/bar').searchParams).toString();
...returns the following on Workers:
q1=foo&q2=foo+bar&q3=foo+bar&q4=foo/bar
...but in Node.js, browsers, etc returns:
q1=foo&q2=foo+bar&q3=foo+bar&q4=foo%2Fbar
/
instead of %2
We need to understand why this is the case and if a regression from #1273
Metadata
Assignees
Labels
No labels
Activity