mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
780 B
37 lines
780 B
'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);
|
|
}
|
|
|