mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
4 lines
92 B
JavaScript
4 lines
92 B
JavaScript
export function randomNum (n, m) {
|
|
return Math.floor(Math.random() * (m - n + 1) + n)
|
|
}
|