speech_asr
2023-12-15 630509da0f16bcfd145a69bb3223bed92761dc61
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}