Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add info about serializable types for querystring.stringify() #12313

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
doc: uses {} to link to mdn docs for types
  • Loading branch information
shubheksha committed Apr 11, 2017
commit fec24ecbde17864a23271bdd53079a7aa392e33d
6 changes: 3 additions & 3 deletions doc/api/querystring.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ added: v0.1.25
The `querystring.stringify()` method produces a URL query string from a
given `obj` by iterating through the object's "own properties".

This method serializes the following types of values passed in `obj`: strings,
finite numbers, booleans and arrays of the aforementioned types.
Any other input values will be coerced to empty strings
It serializes the following types of values passed in `obj`:
{String|Number|Boolean|String[]|Number[]|Boolean[]}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: if I'm not wrong primitive types should be in lowercase.

Any other input values will be coerced to empty strings.

For example:

Expand Down