UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

14 lines (11 loc) 226 B
import './chunk-NYLAFCGV.mjs'; import fs from 'fs'; function isFileReadable(filename) { try { fs.accessSync(filename, fs.constants.R_OK); return true; } catch { return false; } } export { isFileReadable };