summaryrefslogtreecommitdiff
path: root/benchmark/timers/timers-insert-pooled.js
blob: a7441a9eaf76f651440fcf517146c1fa08abac06 (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: [5e6],
});

function main({ n }) {

  bench.start();

  for (var i = 0; i < n; i++) {
    setTimeout(() => {}, 1);
  }

  bench.end(n);
}