summaryrefslogtreecommitdiff
path: root/benchmark/process/next-tick-depth.js
blob: 325be9b71cefc405c7e0a99c9070bb7a5e633928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
  n: [7e6],
});

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