UNPKG

@opengis/fastify-table

Version:

core-plugins

12 lines (11 loc) 228 B
import { access } from 'fs/promises'; const isFileExists = async (filepath) => { try { await access(filepath); return true; } catch (err) { return false; } }; export default isFileExists;