aboutsummaryrefslogtreecommitdiff
path: root/bench/exists.js
blob: 1d1d6cfe0ce7e67b7169206343968dcd21c9987f (plain) (blame)
1
2
3
4
5
6
const { existsSync } = require("fs");
const cwd = process.cwd();

const count = parseInt(process.env.ITERATIONS || "1", 10) || 1;

for (let i = 0; i < count; i++) existsSync(cwd);