(value: string)
| 109 | } |
| 110 | |
| 111 | function escapeRegExp(value: string): string { |
| 112 | return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') |
| 113 | } |
| 114 | |
| 115 | function getNextIndexedName(baseName: string, existingNames: string[]): string { |
| 116 | const normalizedBase = baseName.trim() |
no outgoing calls
no test coverage detected