(str: string)
| 284 | } |
| 285 | |
| 286 | private escapeRegex(str: string): string { |
| 287 | return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
| 288 | } |
| 289 | |
| 290 | // Creates placeholder for single line or multi-line pastes |
| 291 | private createPlaceholder(originalText: string): string { |
no test coverage detected