(input: string)
| 5 | const IMPLAUSIBLE_CHARS = /[{},*?\s]/; |
| 6 | |
| 7 | export function isPlausibleCodeFilePath(input: string): boolean { |
| 8 | return !IMPLAUSIBLE_CHARS.test(input); |
| 9 | } |
| 10 | |
| 11 | export interface ParsedCodePath { |
| 12 | filePath: string; |
no outgoing calls
no test coverage detected