2016-02-20 02:03:16 +01:00
|
|
|
'use strict';
|
2017-09-14 03:48:53 +02:00
|
|
|
const common = require('../common.js');
|
2017-12-30 03:57:01 +01:00
|
|
|
const { win32 } = require('path');
|
2015-06-06 02:43:48 +02:00
|
|
|
|
2017-09-14 03:48:53 +02:00
|
|
|
const bench = common.createBenchmark(main, {
|
2016-02-06 04:23:29 +01:00
|
|
|
path: [
|
|
|
|
'',
|
|
|
|
'.',
|
|
|
|
'C:\\..\\',
|
|
|
|
'C:\\foo',
|
|
|
|
'C:\\foo\\bar',
|
2019-02-05 07:06:08 +01:00
|
|
|
'C:\\foo\\bar\\\\baz\\asdf\\quux\\..',
|
2016-02-06 04:23:29 +01:00
|
|
|
],
|
|
|
|
n: [1e6]
|
2015-06-06 02:43:48 +02:00
|
|
|
});
|
|
|
|
|
2017-12-30 03:57:01 +01:00
|
|
|
function main({ n, path }) {
|
2015-06-06 02:43:48 +02:00
|
|
|
bench.start();
|
|
|
|
for (var i = 0; i < n; i++) {
|
2017-12-30 03:57:01 +01:00
|
|
|
win32.normalize(path);
|
2015-06-06 02:43:48 +02:00
|
|
|
}
|
|
|
|
bench.end(n);
|
|
|
|
}
|