(prefix: string)
| 209 | * ``` |
| 210 | */ |
| 211 | export function createUuidGenerator(prefix: string): () => UUID { |
| 212 | let index = 0 |
| 213 | return () => { |
| 214 | const uuid = createMockUuid(prefix, index) |
| 215 | index++ |
| 216 | return uuid |
| 217 | } |
| 218 | } |
nothing calls this directly
no test coverage detected