(prefix: Prefix, given?: string)
| 18 | } |
| 19 | |
| 20 | export function descending(prefix: Prefix, given?: string) { |
| 21 | return generateID(prefix, true, given) |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | function generateID(prefix: Prefix, descending: boolean, given?: string): string { |
nothing calls this directly
no test coverage detected