You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
499 B

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