node/benchmark/path/toNamespacedPath-posix.js
Rafael Gonzaga dde0cffb2e
benchmark: add toNamespacedPath bench
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>
2024-03-29 22:40:22 +00:00

27 lines
473 B
JavaScript

'use strict';
const common = require('../common.js');
const { posix } = require('path');
const assert = require('assert');
const bench = common.createBenchmark(main, {
path: [
'',
'.',
'/tmp/bar',
'/home/node/..',
posix.join(__dirname, '/..'),
'bar/baz',
],
n: [1e5],
});
function main({ n, path }) {
bench.start();
let a;
for (let i = 0; i < n; i++) {
a = posix.toNamespacedPath(path);
}
bench.end(n);
assert.ok(a + 'a');
}