summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/timers/timers-breadth.js
blob: 8cd77f4fab285237e3d0e119d20ee0755a0638c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict';
const common = require('../common.js');

const bench = common.createBenchmark(main, {
  n: [5e6],
});

function main({ n }) {
  var j = 0;
  bench.start();
  function cb() {
    j++;
    if (j === n)
      bench.end(n);
  }
  for (var i = 0; i < n; i++) {
    setTimeout(cb, 1);
  }
}