Home
last modified time | relevance | path

Searched refs:querystring (Results 1 – 25 of 43) sorted by relevance

12

/third_party/node/doc/api/
Dquerystring.md7 <!--name=querystring-->
9 <!-- source_link=lib/querystring.js -->
11 The `querystring` module provides utilities for parsing and formatting URL
15 const querystring = require('querystring');
18 The `querystring` API is considered Legacy. While it is still maintained,
21 ## `querystring.decode()`
26 The `querystring.decode()` function is an alias for `querystring.parse()`.
28 ## `querystring.encode()`
33 The `querystring.encode()` function is an alias for `querystring.stringify()`.
35 ## `querystring.escape(str)`
[all …]
Ddocumentation.md77 | [querystring](querystring.html) | (3) Legacy |
Durl.md598 The WHATWG `URLSearchParams` interface and the [`querystring`][] module have
599 similar purpose, but the purpose of the [`querystring`][] module is more
673 Unlike [`querystring`][] module, duplicate keys in the form of array values are
1236 question mark (`?`), or an object returned by the [`querystring`][] module's
1341 followed by the output of calling the [`querystring`][] module's `stringify()`
1382 be set to an object returned by the [`querystring`][] module's `parse()`
1535 [`querystring`]: querystring.md
Ddeprecations.md1516 const querystring = require('querystring');
1517 querystring.parse(str, '\n', '=');
1520 This function is not completely equivalent to `querystring.parse()`. One
1521 difference is that `querystring.parse()` does url decoding:
1524 > querystring.parse('%E5%A5%BD=1', '\n', '=');
/third_party/node/benchmark/querystring/
Dquerystring-parse.js3 const querystring = require('querystring'); constant
18 querystring.parse(input, '&&&&&&&&&&');
22 querystring.parse(input, '&&&&&&&&&&');
26 querystring.parse(input);
30 querystring.parse(input);
Dquerystring-stringify.js3 const querystring = require('querystring'); constant
43 querystring.stringify(inputs[name]);
47 querystring.stringify(input);
Dquerystring-unescapebuffer.js3 const querystring = require('querystring'); constant
18 querystring.unescapeBuffer(input);
/third_party/node/benchmark/url/
Dlegacy-vs-whatwg-url-searchparams-serialize.js3 const querystring = require('querystring'); constant
13 const obj = querystring.parse(input);
14 querystring.stringify(obj);
17 querystring.stringify(obj);
Dlegacy-vs-whatwg-url-searchparams-parse.js3 const querystring = require('querystring'); constant
13 querystring.parse(input);
16 querystring.parse(input);
/third_party/node/deps/npm/node_modules/request/lib/
Dquerystring.js4 var querystring = require('querystring') variable
18 this.lib = (this.useQuerystring ? querystring : qs)
48 Querystring.prototype.unescape = querystring.unescape
/third_party/node/lib/
Durl.js152 let querystring; variable
259 if (querystring === undefined) querystring = require('querystring');
260 this.query = querystring.parse(this.search.slice(1));
448 if (querystring === undefined) querystring = require('querystring');
449 this.query = querystring.parse(this.query);
613 if (querystring === undefined) querystring = require('querystring');
614 query = querystring.stringify(this.query);
/third_party/node/deps/npm/node_modules/aws4/
Daws4.js3 querystring = require('querystring'), variable
223 …queryStr = encodeRfc3986(querystring.stringify(Object.keys(query).sort().reduce(function(obj, key)…
297 query = querystring.parse(path.slice(queryIx + 1))
325 return path + '?' + encodeRfc3986(querystring.stringify(query))
/third_party/node/deps/npm/node_modules/got/
Dindex.js7 const querystring = require('querystring'); constant
228 opts.query = querystring.stringify(query);
253 body = opts.body = querystring.stringify(body);
Dreadme.md87 … a plain object, it will be stringified with [`querystring.stringify`](https://nodejs.org/api/quer…
/third_party/node/benchmark/
DREADME.md37 | querystring | Benchmarks for the `querystring` subsystem. …
/third_party/node/lib/internal/
Durl.js74 let querystring; variable
759 buf = querystring.unescape(buf);
780 buf = querystring.unescape(buf);
805 querystring = require('querystring');
824 buf = querystring.unescape(buf);
/third_party/node/deps/npm/node_modules/delegates/
DReadme.md25 .access('querystring')
/third_party/node/deps/npm/node_modules/request/
DREADME.md385 var qs = require('querystring')
743 - `qs` - object containing querystring values to be appended to the `uri`
744 …method. Alternatively pass options to the [querystring.parse](https://nodejs.org/docs/v0.12.0/api/
745 …hod. Alternatively pass options to the [querystring.stringify](https://nodejs.org/docs/v0.12.0/ap…
746 - `useQuerystring` - if true, use `querystring` to stringify and parse
754 - `form` - when passed an object or a querystring, this sets `body` to a querystring representation…
DCHANGELOG.md244 - [#1600](https://github.com/request/request/pull/1600) Extract the querystring logic into separate…
418 - [#1137](https://github.com/request/request/pull/1137) Add ability to specifiy querystring lib in …
509 - [#949](https://github.com/request/request/pull/949) Manually enter querystring in form option (@c…
601 - [#475](https://github.com/request/request/pull/475) Use `unescape` from `querystring` (@shimaore)
603 - [#471](https://github.com/request/request/pull/471) Using querystring library from visionmedia (@…
/third_party/skia/third_party/externals/tint/tools/src/
Dgo.sum37 github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
38 github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
/third_party/node/deps/npm/node_modules/query-string/
Dreadme.md227 …ations, which causes a lot of [edge cases](https://github.com/visionmedia/node-querystring/issues).
/third_party/node/deps/npm/node_modules/qs/
DREADME.md11 A querystring parsing and stringifying library with some added security.
15 …inally created and maintained by [TJ Holowaychuk](https://github.com/visionmedia/node-querystring).
/third_party/node/deps/npm/node_modules/psl/
Dyarn.lock554 querystring-es3 "~0.2.0"
607 querystring-es3 "~0.2.0"
3443 querystring-es3@~0.2.0:
3445 …resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f790498757…
3447 querystring@0.2.0:
3449 …resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da75…
4395 querystring "0.2.0"
/third_party/node/deps/npm/node_modules/npm-registry-fetch/
DREADME.md500 [`querystring.stringify()`](https://nodejs.org/api/querystring.html#querystring_querystring_stringi…
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md239 * querystring: custom encode and decode (fengmk2)
240 * querystring: do not add sep for empty array (cjihrig)
241 * querystring: remove prepended ? from query field (Ezequiel Rabinovich)
383 * querystring: remove `name` from `stringify()` (Yorkie)
1347 * querystring: improved speed and code cleanup (Felix Böhm)
2087 …s://github.com/joyent/node/issues/1707) Fix hasOwnProperty security problem in querystring (isaacs)
2315 …ps://github.com/joyent/node/issues/1707) hasOwnProperty usage security hole in querystring (isaacs)
2330 * [#1497](https://github.com/joyent/node/issues/1497) querystring: Replace 'in' test with 'hasOwnPr…
2759 * Simpler querystring parsing; breaks API (Peter Griess)
2806 * Various bug fixes (console, querystring, require)
[all …]

12