mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
e167ab71fb
PR-URL: https://github.com/nodejs/node/pull/13757 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
38 lines
780 B
JavaScript
38 lines
780 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const path = require('path');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
pathext: [
|
|
'',
|
|
'C:\\',
|
|
'C:\\foo',
|
|
'D:\\foo\\.bar.baz',
|
|
['E:\\foo\\.bar.baz', '.baz'].join('|'),
|
|
'foo',
|
|
'foo\\bar.',
|
|
['foo\\bar.', '.'].join('|'),
|
|
'\\foo\\bar\\baz\\asdf\\quux.html',
|
|
['\\foo\\bar\\baz\\asdf\\quux.html', '.html'].join('|')
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
const n = +conf.n;
|
|
const p = path.win32;
|
|
var input = String(conf.pathext);
|
|
var ext;
|
|
const extIdx = input.indexOf('|');
|
|
if (extIdx !== -1) {
|
|
ext = input.slice(extIdx + 1);
|
|
input = input.slice(0, extIdx);
|
|
}
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.basename(input, ext);
|
|
}
|
|
bench.end(n);
|
|
}
|