Sha256: d91cfcc309bdf9baa16b14fb0451fe65315383e6059c416aec4fb143c3a05cce
Contents?: true
Size: 552 Bytes
Versions: 5
Compression:
Stored size: 552 Bytes
Contents
'use strict'; const common = require('../common.js'); const bench = common.createBenchmark(main, { millions: [5] }); function main(conf) { const N = +conf.millions * 1e6; process.on('exit', function() { bench.end(N / 1e6); }); function cb1(arg1) {} function cb2(arg1, arg2) {} function cb3(arg1, arg2, arg3) {} bench.start(); for (let i = 0; i < N; i++) { if (i % 3 === 0) setImmediate(cb3, 512, true, null); else if (i % 2 === 0) setImmediate(cb2, false, 5.1); else setImmediate(cb1, 0); } }
Version data entries
5 entries across 4 versions & 1 rubygems