(filePath: string)
| 155 | } |
| 156 | |
| 157 | function isLikelyTextFile(filePath: string): boolean { |
| 158 | const ext = path.extname(filePath).toLowerCase(); |
| 159 | return TEXT_EXTENSIONS.has(ext); |
| 160 | } |
| 161 | |
| 162 | function listTextFilesRecursively(rootDir: string): string[] { |
| 163 | const files: string[] = []; |
no outgoing calls
no test coverage detected