mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
Path functions being benchmarked are: * format * isAbsolute * join * normalize * relative * resolve PR-URL: https://github.com/nodejs/io.js/pull/1778 Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
32 lines
578 B
JavaScript
32 lines
578 B
JavaScript
var common = require('../common.js');
|
|
var path = require('path');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
type: ['win32', 'posix'],
|
|
n: [1e7],
|
|
});
|
|
|
|
function main(conf) {
|
|
var n = +conf.n;
|
|
var p = path[conf.type];
|
|
var test = conf.type === 'win32' ? {
|
|
root: 'C:\\',
|
|
dir: 'C:\\path\\dir',
|
|
base: 'index.html',
|
|
ext: '.html',
|
|
name: 'index'
|
|
} : {
|
|
root : '/',
|
|
dir : '/home/user/dir',
|
|
base : 'index.html',
|
|
ext : '.html',
|
|
name : 'index'
|
|
};
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.format(test);
|
|
}
|
|
bench.end(n);
|
|
}
|