UNPKG

@johnf/react-native-owl

Version:
11 lines (9 loc) 205 B
import { promises as fs } from 'fs'; export const fileExists = async (filePath: string): Promise<boolean> => { try { await fs.access(filePath); return true; } catch { return false; } };