0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/benchmark/path/resolve-posix.js

24 lines
471 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common.js');
const { posix } = require('path');
const bench = common.createBenchmark(main, {
paths: [
'',
['', ''].join('|'),
['foo/bar', '/tmp/file/', '..', 'a/../subfile'].join('|'),
['a/b/c/', '../../..'].join('|')
],
n: [1e6]
});
function main({ n, paths }) {
const args = paths.split('|');
bench.start();
for (var i = 0; i < n; i++) {
posix.resolve.apply(null, args);
}
bench.end(n);
}