| 106 | |
| 107 | // ─── Collect DA files with non-EN permalinks ────────────────────────────── |
| 108 | interface DAFile { |
| 109 | full: string; |
| 110 | basename: string; |
| 111 | parsed: matter.GrayMatterFile<string>; |
| 112 | } |
| 113 | |
| 114 | function walkDa(dir: string, results: DAFile[] = []): DAFile[] { |
| 115 | for (const e of fs.readdirSync(dir, { withFileTypes: true })) { |
nothing calls this directly
no outgoing calls
no test coverage detected