forked from mrsone40/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbench-realpath.js
More file actions
41 lines (35 loc) · 807 Bytes
/
bench-realpath.js
File metadata and controls
41 lines (35 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
'use strict';
const common = require('../common');
const fs = require('fs');
const path = require('path');
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 }) {
bench.start();
if (pathType === 'relative')
relativePath(n);
else
resolvedPath(n);
}
function relativePath(n) {
(function r(cntr) {
if (cntr-- <= 0)
return bench.end(n);
fs.realpath(relative_path, () => {
r(cntr);
});
}(n));
}
function resolvedPath(n) {
(function r(cntr) {
if (cntr-- <= 0)
return bench.end(n);
fs.realpath(resolved_path, () => {
r(cntr);
});
}(n));
}