node/benchmark/timers/timers-insert-pooled.js
Alex Ramirez d0ed431041
benchmark: swap var for let in benchmarks
In benchmark directory this changes for loops
using var to let when it applies for consistency

PR-URL: https://github.com/nodejs/node/pull/28958
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2020-02-13 21:38:00 +01:00

18 lines
243 B
JavaScript

'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
n: [5e6],
});
function main({ n }) {
bench.start();
for (let i = 0; i < n; i++) {
setTimeout(() => {}, 1);
}
bench.end(n);
}