fileExists.ts 156 B

12345678910
  1. import fs from 'node:fs'
  2. export function doesFileExist(filePath: string) {
  3. try {
  4. return fs.existsSync(filePath)
  5. }
  6. catch {
  7. return false
  8. }
  9. }