(a: string | null, b: string | null)
| 24 | * @throws if `a >= b` (callers must pass ordered, distinct bounds) |
| 25 | */ |
| 26 | export function keyBetween(a: string | null, b: string | null): string { |
| 27 | return generateKeyBetween(a, b) |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Returns `n` keys evenly spaced strictly between `a` and `b` (same open-end |
no test coverage detected