summaryrefslogtreecommitdiff
path: root/benchmark/fs/bench-realpathSync.js
blob: 7a01bd18cb72bf4afde1f3abaaa9ec244b5c6a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'use strict';

const common = require('../common');
const fs = require('fs');
const path = require('path');

process.chdir(__dirname);
const resolved_path = path.resolve(__dirname, '../../lib/');
const relative_path = path.relative(__dirname, '../../lib/');

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


function main({ n, pathType }) {
  const path = pathType === 'relative' ? relative_path : resolved_path;
  bench.start();
  for (var i = 0; i < n; i++) {
    fs.realpathSync(path);
  }
  bench.end(n);
}