mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
92953fa194
PR-URL: https://github.com/nodejs/node/pull/18250 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
28 lines
522 B
JavaScript
28 lines
522 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const { win32 } = require('path');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
path: [
|
|
'',
|
|
'\\',
|
|
'C:\\foo',
|
|
'foo\\.bar.baz',
|
|
'index.html',
|
|
'index',
|
|
'foo\\bar\\..baz.quux',
|
|
'foo\\bar\\...baz.quux',
|
|
'D:\\foo\\bar\\baz\\asdf\\quux',
|
|
'\\foo\\bar\\baz\\asdf\\quux.foobarbazasdfquux'
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main({ n, path }) {
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
win32.extname(path);
|
|
}
|
|
bench.end(n);
|
|
}
|