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
Per Mozilla docs, searchParams should contain the parsed query params. https://developer.mozilla.org/en-US/docs/Web/API/URL/searchParams.
But url-parse does not support this.
The text was updated successfully, but these errors were encountered:
This module was conceived to be compatible with the legacy Node.js URL parser: https://nodejs.org/api/url.html#url_legacy_urlobject.
> url.parse('http://example.com/?foo=bar', true) Url { protocol: 'http:', slashes: true, auth: null, host: 'example.com', port: null, hostname: 'example.com', hash: null, search: '?foo=bar', query: { foo: 'bar' }, pathname: '/', path: '/?foo=bar', href: 'http://example.com/?foo=bar' }
Sorry, something went wrong.
an alias here would make a lot of sense. it's a module that can be used in the front end.
No branches or pull requests
Per Mozilla docs, searchParams should contain the parsed query params.
https://developer.mozilla.org/en-US/docs/Web/API/URL/searchParams.
But url-parse does not support this.
The text was updated successfully, but these errors were encountered: