-
-
Notifications
You must be signed in to change notification settings - Fork 34.4k
Closed
Labels
whatwg-urlIssues and PRs related to the WHATWG URL implementation.Issues and PRs related to the WHATWG URL implementation.
Description
const url = new (require("url").URL)("http://www.domain.com:123/dir/file.html?var=&var=value&var=#hash");
console.log( Array.from(url.searchParams) );logs:
[ [ 'var', '' ], [ 'var', '' ] ]when it should be:
[ [ 'var', '' ], [ 'var', 'value' ], [ 'var', '' ] ]Metadata
Metadata
Assignees
Labels
whatwg-urlIssues and PRs related to the WHATWG URL implementation.Issues and PRs related to the WHATWG URL implementation.