(a: number, b: number)
| 2 | import type { SystemConfigKey } from "../config/config"; |
| 3 | |
| 4 | export function randNum(a: number, b: number) { |
| 5 | return Math.floor(Math.random() * (b - a + 1)) + a; |
| 6 | } |
| 7 | |
| 8 | export function randomMessageFlag(): string { |
| 9 | // parseInt('a0000000', 36) = 783641640960; |
no outgoing calls
no test coverage detected