summaryrefslogtreecommitdiff
path: root/benchmark/process/next-tick-breadth.js
blob: 21c5dab4919234ed6be5e58961af1c93db2b9b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict';

const common = require('../common.js');
const bench = common.createBenchmark(main, {
  n: [1e7],
});

function main({ n }) {
  let j = 0;

  function cb() {
    j++;
    if (j === n)
      bench.end(n);
  }

  bench.start();
  for (let i = 0; i < n; i++) {
    process.nextTick(cb);
  }
}