You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 10, 2021. It is now read-only.
* Parse a query string into an object. Leading ? or # are ignored, so you can pass location.search or location.hash directly.
* From [url/parse](https://nodejs.org/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost)
* @static
* @param {string} urlString The URL string to parse.
* @param {boolean} [parseQueryString=false] The query property will be set to an object returned by the querystring module's parse() method if `true`.
* @param {boolean} [slashesDenoteHost=false] The first token after the literal string // and preceding the next / will be interpreted as the host if `true`.
* @returns {Object} Returns the parsed URL into a collection of key and value pairs.