(value: string)
| 482 | } |
| 483 | |
| 484 | export function escapeRegExp(value: string): string { |
| 485 | return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') |
| 486 | } |
| 487 | |
| 488 | /** |
| 489 | * Normalizes a name for comparison by converting to lowercase and removing |
no test coverage detected