mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
7e03ffcc12
PR-URL: https://github.com/nodejs/node/pull/18250 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
16 lines
265 B
JavaScript
16 lines
265 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 (var i = 0; i < n; ++i)
|
|
fs.readFileSync(__filename);
|
|
bench.end(n);
|
|
}
|