FunASR/web-pages/mock/util.js

4 lines
92 B
JavaScript
Raw Permalink Normal View History

2024-05-18 15:50:56 +08:00
export function randomNum (n, m) {
return Math.floor(Math.random() * (m - n + 1) + n)
}