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

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