/
githubmirror
/
DefinitelyTyped
Обзор
Документация
Войти
/
githubmirror
/
DefinitelyTyped
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
scripts/remove-empty.js
10 строк
351 B
TypeScript Bot
🤖 dprint fmt
07 окт 2023, 02:01
07 окт 2023, 02:01
e493ee0
Код
Авторство
О чём код?
import * as fs from "node:fs"; import * as path from "node:path"; for (const d of fs.readdirSync("./types")) { const dir = path.join("./types", d); const files = fs.readdirSync(dir); if (files.length === 0 || files.length === 1) { console.log("Deleting unused directory", dir); fs.rmSync(dir, { recursive: true }); } }