ソースを参照

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

horanchikk 7 ヶ月 前
コミット
71259783b9
1 ファイル変更0 行追加10 行削除
  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
-  }
-}