mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 15:46:27 +00:00

This reverts commit 7cfbc9f90f
.
PR-URL: https://github.com/nodejs/node/pull/31755
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
23 lines
415 B
JavaScript
23 lines
415 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const url = require('url');
|
|
|
|
const inputs = {
|
|
normal: 'http://foo.com/bar',
|
|
escaped: 'https://foo.bar/{}^`/abcd'
|
|
};
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
type: Object.keys(inputs),
|
|
n: [1e7]
|
|
});
|
|
|
|
function main({ type, n }) {
|
|
const input = inputs[type];
|
|
|
|
bench.start();
|
|
for (let i = 0; i < n; i += 1)
|
|
url.parse(input);
|
|
bench.end(n);
|
|
}
|