UNPKG

ui-thing

Version:

CLI used to add Nuxt components to a project

12 lines (10 loc) 291 B
import fs from "node:fs"; export const fileExists = async (path: string) => { try { await fs.promises.access(path, fs.constants.F_OK || fs.constants.W_OK); return true; // eslint-disable-next-line @typescript-eslint/no-unused-vars } catch (error) { return false; } };