summaryrefslogtreecommitdiff
path: root/benchmark/process/next-tick-breadth.js
blob: 297bf43495d2e6c425eae22def75fa58900eef96 (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 }) {
  var j = 0;

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

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