(path)
| 45 | } |
| 46 | |
| 47 | async function readText(path) { return await fsReadFile(path, 'utf8'); } |
| 48 | async function writeText(path, content) { await fsWriteFile(path, content); } |
| 49 | async function loadJSON(path) { return JSON.parse(await readText(path)); } |
| 50 | function listFilesRecursive(root) { |