FridayNightFunkinBoyfriendBot/util/between.js

8 lines
127 B
JavaScript
Raw Normal View History

2023-12-17 14:55:27 -05:00
function between (min, max) {
return Math.floor(
Math.random() * (max - min) + min
)
}
module.exports = between