0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/benchmark/fs/readFileSync.js

16 lines
265 B
JavaScript
Raw Normal View History

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