mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
0d1b14ac19
In benchmark url directory this changes for loops using var to let when it applies for consistency PR-URL: https://github.com/nodejs/node/pull/28867 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Rich Trott <rtrott@gmail.com>
23 lines
601 B
JavaScript
23 lines
601 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const { URLSearchParams } = require('url');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
accessMethod: ['get', 'getAll', 'has'],
|
|
param: ['one', 'two', 'three', 'nonexistent'],
|
|
n: [2e7]
|
|
});
|
|
|
|
const str = 'one=single&two=first&three=first&two=2nd&three=2nd&three=3rd';
|
|
|
|
function main({ accessMethod, param, n }) {
|
|
const params = new URLSearchParams(str);
|
|
if (!params[accessMethod])
|
|
throw new Error(`Unknown method ${accessMethod}`);
|
|
|
|
bench.start();
|
|
for (let i = 0; i < n; i += 1)
|
|
params[accessMethod](param);
|
|
bench.end(n);
|
|
}
|