blob: 12b9cdc7e6fd65525381a6ac246dc4c3f01d0771 [file] [log] [blame]
'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
millions: [10]
});
function main(conf) {
const N = +conf.millions * 1e6;
let n = N;
process.on('exit', function() {
bench.end(N / 1e6);
});
bench.start();
setImmediate(onNextTick);
function onNextTick() {
if (--n)
setImmediate(onNextTick);
}
}