This module provides utilities for dealing with query strings. It provides the following methods:
Serialize an object to a query string. Optionally override the default separator and assignment characters.
Example:
querystring.stringify({foo: 'bar'})
// returns
'foo=bar'
querystring.stringify({foo: 'bar', baz: 'bob'}, ';', ':')
// returns
'foo:bar;baz:bob'
Deserialize a query string to an object. Optionally override the default separator and assignment characters.
Example:
querystring.parse('a=b&b=c')
// returns
{ a: 'b', b: 'c' }
The escape function used by querystring.stringify
,
provided so that it could be overridden if necessary.
The unescape function used by querystring.parse
,
provided so that it could be overridden if necessary.