UNPKG

mochapack

Version:
13 lines (10 loc) 234 B
import fs from 'fs' /* eslint-disable import/prefer-default-export */ export function existsFileSync(file: string): boolean { try { fs.accessSync(file, fs.constants.F_OK) return true } catch (e) { return false } }