(options?: GenerateOptions)
| 2 | import { resolveRng } from './rng' |
| 3 | |
| 4 | export function getRng(options?: GenerateOptions): () => number { |
| 5 | return resolveRng(options) |
| 6 | } |
| 7 | |
| 8 | export function getAllowedDigits(options?: GenerateOptions): string[] { |
| 9 | if (options?.allowedDigits && options.allowedDigits.length > 0) { |
no test coverage detected