mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c74e6fe651
Refs: https://github.com/nodejs/node/issues/9493 PR-URL: https://github.com/nodejs/node/pull/10925 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
19 lines
312 B
JavaScript
19 lines
312 B
JavaScript
'use strict';
|
|
var common = require('../common.js');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
thousands: [500],
|
|
});
|
|
|
|
function main(conf) {
|
|
var iterations = +conf.thousands * 1e3;
|
|
|
|
bench.start();
|
|
|
|
for (var i = 0; i < iterations; i++) {
|
|
setTimeout(() => {}, 1);
|
|
}
|
|
|
|
bench.end(iterations / 1e3);
|
|
}
|