summaryrefslogtreecommitdiff
path: root/benchmark/process/queue-microtask-depth.js
blob: 407feb1b3270c43044be04ea5e8a6a92b17f50a4 (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: [12e5]
});

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