(prefix: Prefix, given?: string)
| 14 | type Prefix = keyof typeof prefixes |
| 15 | export namespace Identifier { |
| 16 | export function ascending(prefix: Prefix, given?: string) { |
| 17 | return generateID(prefix, false, given) |
| 18 | } |
| 19 | |
| 20 | export function descending(prefix: Prefix, given?: string) { |
| 21 | return generateID(prefix, true, given) |
nothing calls this directly
no test coverage detected