FridayNightFunkinBoyfriendBot/util/between.js
2024-02-20 17:16:22 +00:00

7 lines
127 B
JavaScript

function between (min, max) {
return Math.floor(
Math.random() * (max - min) + min
)
}
module.exports = between