querystring.parse(str[, sep][, eq][, options])
Deserialize a query string to an object. Optionally override the default separator ('&') and assignment ('=') characters.
Options object may contain maxKeys property (equal to 1000 by default), it'll be used to limit processed keys. Set it to 0 to remove key count limitation.
Options object may contain decodeURIComponent property (querystring.unescape by default), it can be used to decode a non-utf8 encoding string if necessary.
Example:
qu