Parcourir la source

feat(scripts): удалён старый скрипт проверки файлов

horanchikk il y a 7 mois
Parent
commit
71259783b9
1 fichiers modifiés avec 0 ajouts et 10 suppressions
  1. 0 10
      scripts/fileExists.ts

+ 0 - 10
scripts/fileExists.ts

@@ -1,10 +0,0 @@
-import fs from 'node:fs'
-
-export function doesFileExist(filePath: string) {
-  try {
-    return fs.existsSync(filePath)
-  }
-  catch {
-    return false
-  }
-}