(input: string)
| 81 | } |
| 82 | |
| 83 | function escapeRegExp(input: string): string { |
| 84 | return input.replace(/[.*+?^${}()|[\]\\]/g, "\\$&") |
| 85 | } |
| 86 | |
| 87 | function buildWhitespaceTolerantRegex(oldLF: string): RegExp { |
| 88 | if (oldLF === "") { |
no test coverage detected