Home
last modified time | relevance | path

Searched refs:maxKeys (Results 1 – 5 of 5) sorted by relevance

/third_party/node/test/parallel/
Dtest-querystring-maxKeys-non-finite.js40 maxKeys: Infinity property
43 maxKeys: NaN property
46 maxKeys: 'Infinity' property
49 maxKeys: 'NaN' property
Dtest-querystring.js356 Object.keys(qs.parse('a=1&b=1&c=1', null, null, { maxKeys: 1 })).length, property
361 Object.keys(qs.parse('&a', null, null, { maxKeys: 1 })).length, property
374 Object.keys(qs.parse(url, null, null, { maxKeys: 0 })).length, property
/third_party/node/lib/
Dquerystring.js331 if (options && typeof options.maxKeys === 'number') {
338 pairs = (options.maxKeys > 0 ? options.maxKeys : -1);
/third_party/node/doc/api/
Dquerystring.md77 * `maxKeys` {number} Specifies the maximum number of keys to parse.
/third_party/node/doc/changelogs/
DCHANGELOG_V5.md852 …github.com/nodejs/node/commit/85743c0e92)] - **querystring**: check that maxKeys is finite (Myles …