mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
3aef395ed5
PR-URL: https://github.com/nodejs/node/pull/46551 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
22 lines
558 B
JavaScript
22 lines
558 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
|
|
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);
|
|
}
|