chomens-bot-js/util/between.js
2022-11-27 14:35:28 +07:00

13 lines
264 B
JavaScript

module.exports = {
/**
* this code is from somewhere i can't remember...
* @param {Number} min
* @param {Number} max
* @return {Number}
*/
between: function (min, max) {
return Math.floor(
Math.random() * (max - min) + min
)
}
}