summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/url/url-searchparams-iteration.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/benchmark/url/url-searchparams-iteration.js')
-rw-r--r--deps/node/benchmark/url/url-searchparams-iteration.js58
1 files changed, 0 insertions, 58 deletions
diff --git a/deps/node/benchmark/url/url-searchparams-iteration.js b/deps/node/benchmark/url/url-searchparams-iteration.js
deleted file mode 100644
index 244c9550..00000000
--- a/deps/node/benchmark/url/url-searchparams-iteration.js
+++ /dev/null
@@ -1,58 +0,0 @@
-'use strict';
-const common = require('../common.js');
-const assert = require('assert');
-const { URLSearchParams } = require('url');
-
-const bench = common.createBenchmark(main, {
- loopMethod: ['forEach', 'iterator'],
- n: [1e6]
-});
-
-const str = 'one=single&two=first&three=first&two=2nd&three=2nd&three=3rd';
-
-function forEach(n) {
- const params = new URLSearchParams(str);
- const noDead = [];
- const cb = (val, key) => {
- noDead[0] = key;
- noDead[1] = val;
- };
-
- bench.start();
- for (var i = 0; i < n; i += 1)
- params.forEach(cb);
- bench.end(n);
-
- assert.strictEqual(noDead[0], 'three');
- assert.strictEqual(noDead[1], '3rd');
-}
-
-function iterator(n) {
- const params = new URLSearchParams(str);
- const noDead = [];
-
- bench.start();
- for (var i = 0; i < n; i += 1) {
- for (const pair of params) {
- noDead[0] = pair[0];
- noDead[1] = pair[1];
- }
- }
- bench.end(n);
-
- assert.strictEqual(noDead[0], 'three');
- assert.strictEqual(noDead[1], '3rd');
-}
-
-function main({ loopMethod, n }) {
- switch (loopMethod) {
- case 'forEach':
- forEach(n);
- break;
- case 'iterator':
- iterator(n);
- break;
- default:
- throw new Error(`Unknown method ${loopMethod}`);
- }
-}