mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
22 lines
341 B
JavaScript
22 lines
341 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const common = require('../common.js');
|
||
|
const bench = common.createBenchmark(main, {
|
||
|
millions: [10]
|
||
|
});
|
||
|
|
||
|
function main(conf) {
|
||
|
const N = +conf.millions * 1e6;
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
bench.end(N / 1e6);
|
||
|
});
|
||
|
|
||
|
function cb() {}
|
||
|
|
||
|
bench.start();
|
||
|
for (let i = 0; i < N; i++) {
|
||
|
setImmediate(cb);
|
||
|
}
|
||
|
}
|