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.
 
 
 
 
 
 

20 lines
335 B

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