Explorar el Código

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

horanchikk hace 7 meses
padre
commit
71259783b9
Se han modificado 1 ficheros con 0 adiciones y 10 borrados
  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
-  }
-}