(value: string)
| 264 | } |
| 265 | |
| 266 | function escapeRegex(value: string): string { |
| 267 | return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); |
| 268 | } |
| 269 | |
| 270 | function escapeXmlText(value: string): string { |
| 271 | return value |
no outgoing calls
no test coverage detected
searching dependent graphs…