Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eec0c63

Browse filesBrowse files
benglMyles Borins
authored andcommitted
doc: add added: information for querystring
Module introduced in 7ff04c1. Ref: #6578 PR-URL: #6593 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent a870cdc commit eec0c63
Copy full SHA for eec0c63

File tree

Expand file treeCollapse file tree

1 file changed

+12
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+12
-0
lines changed
Open diff view settings
Collapse file

‎doc/api/querystring.md‎

Copy file name to clipboardExpand all lines: doc/api/querystring.md
+12Lines changed: 12 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.