You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
318 B

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