Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan English <bryan@bryanenglish.com>2016-05-05 08:50:03 +0300
committerAnna Henningsen <anna@addaleax.net>2016-05-09 14:44:15 +0300
commitf7730733384cc15e8e5c842e3e1771e6f917c188 (patch)
treeea537dba9f7ec070f2b859487e7d9eb85405c8b3 /doc/api/querystring.md
parent4e6dc00401f6ca619c1bdb82394d2ba1674b5867 (diff)
doc: add `added:` information for querystring
Module introduced in 7ff04c1f8. Ref: https://github.com/nodejs/node/issues/6578 PR-URL: https://github.com/nodejs/node/pull/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>
Diffstat (limited to 'doc/api/querystring.md')
-rw-r--r--doc/api/querystring.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/api/querystring.md b/doc/api/querystring.md
index 3a864e2d4fa..263f44e1990 100644
--- a/doc/api/querystring.md
+++ b/doc/api/querystring.md
@@ -8,11 +8,17 @@ This module provides utilities for dealing with query strings.
It provides the following methods:
## querystring.escape
+<!-- YAML
+added: v0.1.25
+-->
The escape function used by `querystring.stringify`,
provided so that it could be overridden if necessary.
## querystring.parse(str[, sep][, eq][, options])
+<!-- YAML
+added: v0.1.25
+-->
Deserialize a query string to an object.
Optionally override the default separator (`'&'`) and assignment (`'='`)
@@ -38,6 +44,9 @@ querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null,
```
## querystring.stringify(obj[, sep][, eq][, options])
+<!-- YAML
+added: v0.1.25
+-->
Serialize an object to a query string.
Optionally override the default separator (`'&'`) and assignment (`'='`)
@@ -63,6 +72,9 @@ querystring.stringify({ w: '中文', foo: 'bar' }, null, null,
```
## querystring.unescape
+<!-- YAML
+added: v0.1.25
+-->
The unescape function used by `querystring.parse`,
provided so that it could be overridden if necessary.