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.
28 lines
457 B
28 lines
457 B
'use strict';
|
|
const common = require('../common.js');
|
|
const path = require('path');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
path: [
|
|
'',
|
|
'/',
|
|
'/foo',
|
|
'/foo/bar',
|
|
'foo',
|
|
'foo/bar',
|
|
'/foo/bar/baz/asdf/quux'
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
const n = +conf.n;
|
|
const p = path.posix;
|
|
const input = String(conf.path);
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.dirname(input);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|