(msg: string)
| 35 | } |
| 36 | |
| 37 | export function error(msg: string): never { |
| 38 | throw new Error(`Internal Error: ${msg}`); |
| 39 | } |
| 40 | |
| 41 | // Escape characters that have a special meaning in Regular Expressions |
| 42 | export function escapeRegExp(s: string): string { |
no outgoing calls
no test coverage detected
searching dependent graphs…