Files
bun.sh/bench/snippets/realpath.mjs
2022-01-22 21:19:18 -08:00

5 lines
206 B
JavaScript

import { realpathSync } from "node:fs";
const count = parseInt(process.env.ITERATIONS || "1", 10) || 1;
const arg = process.argv[process.argv.length - 1];
for (let i = 0; i < count; i++) realpathSync(arg);