summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/url/url-searchparams-read.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/benchmark/url/url-searchparams-read.js')
-rw-r--r--deps/node/benchmark/url/url-searchparams-read.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/node/benchmark/url/url-searchparams-read.js b/deps/node/benchmark/url/url-searchparams-read.js
deleted file mode 100644
index 2eb0a4f2..00000000
--- a/deps/node/benchmark/url/url-searchparams-read.js
+++ /dev/null
@@ -1,22 +0,0 @@
-'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 (var i = 0; i < n; i += 1)
- params[accessMethod](param);
- bench.end(n);
-}