2016-02-20 09:03:16 +08:00
|
|
|
'use strict';
|
2017-09-14 09:48:53 +08:00
|
|
|
const common = require('../common.js');
|
2017-12-30 10:57:01 +08:00
|
|
|
const { win32 } = require('path');
|
2015-07-05 03:50:07 +08:00
|
|
|
|
2017-09-14 09:48:53 +08:00
|
|
|
const bench = common.createBenchmark(main, {
|
2016-02-06 11:23:29 +08:00
|
|
|
path: [
|
|
|
|
'',
|
|
|
|
'\\',
|
|
|
|
'\\foo',
|
|
|
|
'C:\\foo\\bar',
|
|
|
|
'foo',
|
|
|
|
'foo\\bar',
|
2019-02-05 14:06:08 +08:00
|
|
|
'D:\\foo\\bar\\baz\\asdf\\quux',
|
2016-02-06 11:23:29 +08:00
|
|
|
],
|
2023-02-15 01:09:42 +08:00
|
|
|
n: [1e5],
|
2015-07-05 03:50:07 +08:00
|
|
|
});
|
|
|
|
|
2017-12-30 10:57:01 +08:00
|
|
|
function main({ n, path }) {
|
2015-07-05 03:50:07 +08:00
|
|
|
bench.start();
|
2019-07-31 21:26:38 +08:00
|
|
|
for (let i = 0; i < n; i++) {
|
2018-12-30 07:26:36 +08:00
|
|
|
win32.dirname(i % 3 === 0 ? `${path}${i}` : path);
|
2015-07-05 03:50:07 +08:00
|
|
|
}
|
|
|
|
bench.end(n);
|
|
|
|
}
|