• Home
  • Raw
  • Download

Lines Matching +full:no +full:- +full:eq +full:- +full:null

3 <!--introduced_in=v0.1.25-->
5 > Stability: 2 - Stable
7 <!--name=querystring-->
9 <!-- source_link=lib/querystring.js -->
19 <!-- YAML
21 -->
26 <!-- YAML
28 -->
33 <!-- YAML
35 -->
39 The `querystring.escape()` method performs URL percent-encoding on the given
45 application code to provide a replacement percent-encoding implementation if
48 ## `querystring.parse(str[, sep[, eq[, options]]])`
49 <!-- YAML
52 - version: v8.0.0
53 pr-url: https://github.com/nodejs/node/pull/10967
55 - version: v6.0.0
56 pr-url: https://github.com/nodejs/node/pull/6055
57 description: The returned object no longer inherits from `Object.prototype`.
58 - version: v6.0.0, v4.2.4
59 pr-url: https://github.com/nodejs/node/pull/3807
60 description: The `eq` parameter may now have a length of more than `1`.
61 -->
66 * `eq` {string}. The substring used to delimit keys and values in the
70 percent-encoded characters in the query string. **Default:**
80 <!-- eslint-skip -->
93 By default, percent-encoded characters within the query string will be assumed
94 to use UTF-8 encoding. If an alternative character encoding is used, then an
100 querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null,
104 ## `querystring.stringify(obj[, sep[, eq[, options]]])`
105 <!-- YAML
107 -->
112 * `eq` {string}. The substring used to delimit keys and values in the
116 URL-unsafe characters to percent-encoding in the query string. **Default:**
134 By default, characters requiring percent-encoding within the query string will
135 be encoded as UTF-8. If an alternative encoding is required, then an alternative
141 querystring.stringify({ w: '中文', foo: 'bar' }, null, null,
146 <!-- YAML
148 -->
152 The `querystring.unescape()` method performs decoding of URL percent-encoded
161 JavaScript built-in `decodeURIComponent()` method to decode. If that fails,