mirror of https://github.com/nodejs/node.git
querystring doc fix
parent
bb2acd5e75
commit
c7e0c64506
|
@ -2964,7 +2964,7 @@ If you wish to disable the array mungeing (e.g. when generating parameters for a
|
||||||
can set the `munge` argument to `false`.
|
can set the `munge` argument to `false`.
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
querystring.stringify({foo: 'bar', foo: 'baz', foo: 'boz'}, '&', '=', false)
|
querystring.stringify({foo: ['bar', 'baz', 'boz']}, '&', '=', false)
|
||||||
// returns
|
// returns
|
||||||
'foo=bar&foo=baz&foo=boz'
|
'foo=bar&foo=baz&foo=boz'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue