node/benchmark/url/legacy-url-parse.js
Yagiz Nizipli cd0fcf20c3
benchmark: differentiate whatwg and legacy url
PR-URL: https://github.com/nodejs/node/pull/47377
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
2023-04-13 21:37:17 +00:00

23 lines
507 B
JavaScript

'use strict';
const common = require('../common.js');
const url = require('url');
const assert = require('assert');
const bench = common.createBenchmark(main, {
type: common.urlDataTypes,
e: [1],
});
function main({ e, type }) {
const data = common.bakeUrlData(type, e, false, false);
let result = url.parse(data[0]); // Avoid dead code elimination
bench.start();
for (let i = 0; i < data.length; ++i) {
result = url.parse(data[i]);
}
bench.end(data.length);
assert.ok(result);
}