mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 14:33:11 +01:00
0f8941962d
Use let and const in domain, es, events, fixtures, fs, http, http2 and misc. PR-URL: https://github.com/nodejs/node/pull/31518 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
23 lines
506 B
JavaScript
23 lines
506 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);
|
|
}
|