/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
benchmark/url/url-format.js
27 строк
632 B
Antoine du Hamel
benchmark: add trailing commas in `benchmark/url`
10 фев 2023, 03:54
Не верифицирован
10 фев 2023, 03:54
3aef395
Код
Авторство
О чём код?
'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); }