(value: string)
| 19 | const lastSelectedFolderId = ref<number | undefined>(state.folderId) |
| 20 | |
| 21 | function escapeRegExp(value: string): string { |
| 22 | return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') |
| 23 | } |
| 24 | |
| 25 | function getNextIndexedName(baseName: string, existingNames: string[]): string { |
| 26 | const normalizedBase = baseName.trim() |
no outgoing calls
no test coverage detected