UNPKG

@gluestack-seal/cli

Version:
11 lines (9 loc) 208 B
import { access } from "fs/promises"; export const exists = async (path: string): Promise<boolean | string> => { try { await access(path); return path; } catch (error) { return false; } };