(prefix: keyof typeof prefixes, given?: string)
| 20 | let counter = 0 |
| 21 | |
| 22 | export function ascending(prefix: keyof typeof prefixes, given?: string) { |
| 23 | return generateID(prefix, "ascending", given) |
| 24 | } |
| 25 | |
| 26 | export function descending(prefix: keyof typeof prefixes, given?: string) { |
| 27 | return generateID(prefix, "descending", given) |
nothing calls this directly
no test coverage detected