(input: string)
| 27 | } |
| 28 | |
| 29 | export function stripLineRef(input: string): string { |
| 30 | return input.replace(/#.*$/, '').replace(LINE_SUFFIX_RE, ''); |
| 31 | } |
| 32 | |
| 33 | export function isCodeFilePath(input: string): boolean { |
| 34 | if (!isPlausibleCodeFilePath(input)) return false; |
no test coverage detected