mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
dde0cffb2e
PR-URL: https://github.com/nodejs/node/pull/52236 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
29 lines
515 B
JavaScript
29 lines
515 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const { win32 } = require('path');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
path: [
|
|
'',
|
|
'c:/ignore',
|
|
'd:\\a/b\\c/d',
|
|
'\\e.exe',
|
|
'c:/blah\\blah',
|
|
'd:/games',
|
|
'c:../a',
|
|
win32.join(__dirname, '/..'),
|
|
],
|
|
n: [1e5],
|
|
});
|
|
|
|
function main({ n, path }) {
|
|
bench.start();
|
|
let a;
|
|
for (let i = 0; i < n; i++) {
|
|
a = win32.toNamespacedPath(path);
|
|
}
|
|
bench.end(n);
|
|
assert.ok(a + 'a');
|
|
}
|