Skip to content

Commit 929ca30

Browse files
shubhekshaMylesBorins
authored andcommitted
doc: add info about serializable types
querystring.stringify() doesn't serialize some values. Explicitly mention what values are serialized in the docs. Add what happens when another data type is passed to `querystring.stringify()` besides the ones that can be correctly parsed PR-URL: #12313 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 945dcde commit 929ca30

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

doc/api/querystring.md

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ added: v0.1.25
9191
The `querystring.stringify()` method produces a URL query string from a
9292
given `obj` by iterating through the object's "own properties".
9393

94+
It serializes the following types of values passed in `obj`:
95+
{string|number|boolean|string[]|number[]|boolean[]}
96+
Any other input values will be coerced to empty strings.
97+
9498
For example:
9599

96100
```js

0 commit comments

Comments
 (0)