Files
weiyu/modules/python/vendors/FunASR/web-pages/mock/util.js

4 lines
92 B
JavaScript
Raw Normal View History

2024-12-14 10:43:18 +08:00
export function randomNum (n, m) {
return Math.floor(Math.random() * (m - n + 1) + n)
}