mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
9e5d1af3ea
PR-URL: https://github.com/nodejs/node/pull/46426 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
23 lines
507 B
JavaScript
23 lines
507 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [10],
|
|
dir: [ 'lib', 'test/parallel'],
|
|
withFileTypes: ['true', 'false'],
|
|
});
|
|
|
|
|
|
function main({ n, dir, withFileTypes }) {
|
|
withFileTypes = withFileTypes === 'true';
|
|
const fullPath = path.resolve(__dirname, '../../', dir);
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
fs.readdirSync(fullPath, { withFileTypes });
|
|
}
|
|
bench.end(n);
|
|
}
|