UNPKG

@johnf/react-native-owl

Version:
12 lines (11 loc) 230 B
"use strict"; import { promises as fs } from 'fs'; export const fileExists = async filePath => { try { await fs.access(filePath); return true; } catch { return false; } }; //# sourceMappingURL=file-exists.js.map