node/benchmark/url/url-searchparams-read.js
raisinten 3dce4fb85f
test,benchmark: stop requiring URL and URLSearchParams
Since the URL and URLSearchParams classes are available in the
global object, there is no need to require them from 'url'.

PR-URL: https://github.com/nodejs/node/pull/36927
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
2021-01-18 13:44:33 -08:00

22 lines
557 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);
}