| 2 | import { escapeForRegExp } from './utils'; |
| 3 | |
| 4 | export interface DiffParserConfig { |
| 5 | srcPrefix?: string; |
| 6 | dstPrefix?: string; |
| 7 | diffMaxChanges?: number; |
| 8 | diffMaxLineLength?: number; |
| 9 | diffTooBigMessage?: (fileIndex: number) => string; |
| 10 | } |
| 11 | |
| 12 | function getExtension(filename: string, language: string): string { |
| 13 | const filenameParts = filename.split('.'); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…