0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-28 14:33:11 +01:00
nodejs/benchmark/timers/timers-breadth.js

21 lines
351 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
thousands: [5000],
});
function main({ thousands }) {
const N = thousands * 1e3;
var n = 0;
bench.start();
function cb() {
n++;
if (n === N)
bench.end(N / 1e3);
}
for (var i = 0; i < N; i++) {
setTimeout(cb, 1);
}
}