| 142 | // ─── Collect EN files ───────────────────────────────────────────────────────── |
| 143 | |
| 144 | interface EnFile { |
| 145 | permalink: string; |
| 146 | basename: string; |
| 147 | h1: string; |
| 148 | } |
| 149 | |
| 150 | function collectEn(): EnFile[] { |
| 151 | const results: EnFile[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected