summaryrefslogtreecommitdiff
path: root/benchmark/process/next-tick-depth.js
blob: 6669936e398272c6e344a5055a611063a419794c (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: [12e6]
});

process.maxTickDepth = Infinity;

function main({ n }) {

  bench.start();
  process.nextTick(onNextTick);
  function onNextTick() {
    if (--n)
      process.nextTick(onNextTick);
    else
      bench.end(n);
  }
}