Files
weiyu/modules/python/vendors/FunASR/web-pages/mock/util.js
2024-12-14 10:43:31 +08:00

4 lines
92 B
JavaScript

export function randomNum (n, m) {
return Math.floor(Math.random() * (m - n + 1) + n)
}