(value: string)
| 61 | const searchSelectedIndex = ref<number>(-1) |
| 62 | |
| 63 | function escapeRegExp(value: string): string { |
| 64 | return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') |
| 65 | } |
| 66 | |
| 67 | function getNextIndexedName(baseName: string, existingNames: string[]): string { |
| 68 | const normalizedBase = baseName.trim() |
no outgoing calls
no test coverage detected