summaryrefslogtreecommitdiff
path: root/benchmark/os/networkInterfaces.js
blob: 3fa6073ae5c69e5da5c946a80f5cbeaa30574f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';

const common = require('../common.js');
const networkInterfaces = require('os').networkInterfaces;

const bench = common.createBenchmark(main, {
  n: [1e4]
});

function main({ n }) {
  bench.start();
  for (var i = 0; i < n; ++i)
    networkInterfaces();
  bench.end(n);
}