mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
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);
|