Skip to content

Commit eec0c63

Browse files
benglMyles Borins
authored and
Myles Borins
committed
doc: add added: information for querystring
Module introduced in 7ff04c1. Ref: #6578 PR-URL: #6593 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent a870cdc commit eec0c63

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

doc/api/querystring.md

+12
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,17 @@ This module provides utilities for dealing with query strings.
88
It provides the following methods:
99

1010
## querystring.escape
11+
<!-- YAML
12+
added: v0.1.25
13+
-->
1114

1215
The escape function used by `querystring.stringify`,
1316
provided so that it could be overridden if necessary.
1417

1518
## querystring.parse(str[, sep][, eq][, options])
19+
<!-- YAML
20+
added: v0.1.25
21+
-->
1622

1723
Deserialize a query string to an object.
1824
Optionally override the default separator (`'&'`) and assignment (`'='`)
@@ -38,6 +44,9 @@ querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null,
3844
```
3945

4046
## querystring.stringify(obj[, sep][, eq][, options])
47+
<!-- YAML
48+
added: v0.1.25
49+
-->
4150

4251
Serialize an object to a query string.
4352
Optionally override the default separator (`'&'`) and assignment (`'='`)
@@ -63,6 +72,9 @@ querystring.stringify({ w: '中文', foo: 'bar' }, null, null,
6372
```
6473

6574
## querystring.unescape
75+
<!-- YAML
76+
added: v0.1.25
77+
-->
6678

6779
The unescape function used by `querystring.parse`,
6880
provided so that it could be overridden if necessary.

0 commit comments

Comments
 (0)