0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 23:43:09 +01:00
nodejs/benchmark/path/normalize.js

19 lines
342 B
JavaScript
Raw Normal View History

var common = require('../common.js');
var path = require('path');
var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e6],
});
function main(conf) {
var n = +conf.n;
var p = path[conf.type];
bench.start();
for (var i = 0; i < n; i++) {
p.normalize('/foo/bar//baz/asdf/quux/..');
}
bench.end(n);
}