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

21 lines
400 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common.js');
const { win32 } = require('path');
const bench = common.createBenchmark(main, {
paths: [
['C:\\foo', 'bar', '', 'baz\\asdf', 'quux', '..'].join('|')
],
n: [1e6]
});
function main({ n, paths }) {
const args = paths.split('|');
bench.start();
for (var i = 0; i < n; i++) {
win32.join.apply(null, args);
}
bench.end(n);
}