(a: string | null, b: string | null, n: number)
| 33 | * (`nKeysBetween(null, null, count)` mints an ordered run for an empty range). |
| 34 | */ |
| 35 | export function nKeysBetween(a: string | null, b: string | null, n: number): string[] { |
| 36 | return generateNKeysBetween(a, b, n) |
| 37 | } |
no test coverage detected