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

27 lines
505 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const fs = require('fs');
const bench = common.createBenchmark(main, {
n: [1e6],
kind: ['fstatSync', 'lstatSync', 'statSync']
});
function main(conf) {
const n = conf.n >>> 0;
const kind = conf.kind;
const arg = (kind === 'fstatSync' ? fs.openSync(__filename, 'r') : __dirname);
const fn = fs[conf.kind];
bench.start();
for (var i = 0; i < n; i++) {
fn(arg);
}
bench.end(n);
if (kind === 'fstat')
fs.closeSync(arg);
}