/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
benchmark/fs/bench-readdirSync.js
22 строки
507 B
Antoine du Hamel
benchmark: add trailing commas in `benchmark/fs`
01 фев 2023, 22:16
Не верифицирован
01 фев 2023, 22:16
9e5d1af
Код
Авторство
О чём код?
'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); }