Files
node/benchmark/fs/readFileSync.js
Antoine du Hamel 9e5d1af3ea benchmark: add trailing commas in benchmark/fs
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>
2023-02-01 19:16:18 +00:00

16 lines
266 B
JavaScript

'use strict';
const common = require('../common.js');
const fs = require('fs');
const bench = common.createBenchmark(main, {
n: [60e4],
});
function main({ n }) {
bench.start();
for (let i = 0; i < n; ++i)
fs.readFileSync(__filename);
bench.end(n);
}