node/benchmark/url/url-format.js
Antoine du Hamel 3aef395ed5
benchmark: add trailing commas in benchmark/url
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>
2023-02-10 00:54:40 +00:00

28 lines
632 B
JavaScript

'use strict';
const common = require('../common.js');
const url = require('url');
const inputs = {
slashes: { slashes: true, host: 'localhost' },
file: { protocol: 'file:', pathname: '/foo' },
};
const bench = common.createBenchmark(main, {
type: Object.keys(inputs),
n: [25e6],
});
function main({ type, n }) {
const input = inputs[type];
// Force-optimize url.format() so that the benchmark doesn't get
// disrupted by the optimizer kicking in halfway through.
for (const name in inputs)
url.format(inputs[name]);
bench.start();
for (let i = 0; i < n; i += 1)
url.format(input);
bench.end(n);
}