FridayNightFunkinBoyfriendBot/util/between.js

8 lines
127 B
JavaScript
Raw Normal View History

2024-02-15 11:04:05 -05:00
function between (min, max) {
return Math.floor(
Math.random() * (max - min) + min
)
}
module.exports = between