0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/benchmark/path/format-posix.js

30 lines
586 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common.js');
const path = require('path');
const bench = common.createBenchmark(main, {
props: [
['/', '/home/user/dir', 'index.html', '.html', 'index'].join('|')
],
n: [1e7]
});
function main(conf) {
const n = +conf.n;
const p = path.posix;
const props = String(conf.props).split('|');
const obj = {
root: props[0] || '',
dir: props[1] || '',
base: props[2] || '',
ext: props[3] || '',
name: props[4] || '',
};
bench.start();
for (var i = 0; i < n; i++) {
p.format(obj);
}
bench.end(n);
}