UNPKG

one

Version:

One is a new React Framework that makes Vite serve both native and web.

13 lines (12 loc) 250 B
import { exists } from "node:fs"; const existsAsync = file => { return new Promise((res, rej) => { try { exists(file, res); } catch { return false; } }); }; export { existsAsync }; //# sourceMappingURL=existsAsync.mjs.map