(filePath: string)
| 102 | ]; |
| 103 | |
| 104 | function detectLanguage(filePath: string): string | null { |
| 105 | return LANG_MAP[extname(filePath).toLowerCase()] ?? null; |
| 106 | } |
| 107 | |
| 108 | function extractHeader(lines: string[]): string { |
| 109 | const headerLines: string[] = []; |
no outgoing calls
no test coverage detected