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

const bench = common.createBenchmark(main, {
  thousands: [1],
});

function main({ thousands }) {
  const N = thousands * 1e3;
  var n = 0;
  bench.start();
  setTimeout(cb, 1);
  function cb() {
    n++;
    if (n === N)
      bench.end(N / 1e3);
    else
      setTimeout(cb, 1);
  }
}