summaryrefslogtreecommitdiff
path: root/benchmark/path/join-posix.js
blob: f06f74ad37fc462cbf11b17789fc87ad1ddae1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';
const common = require('../common.js');
const { posix } = require('path');

const bench = common.createBenchmark(main, {
  paths: [
    ['/foo', 'bar', '', 'baz/asdf', 'quux', '..'].join('|')
  ],
  n: [1e6]
});

function main({ n, paths }) {
  const args = paths.split('|');

  bench.start();
  for (var i = 0; i < n; i++) {
    posix.join.apply(null, args);
  }
  bench.end(n);
}