chomens-bot-js/util/between.js

14 lines
264 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
module.exports = {
/**
* this code is from somewhere i can't remember...
* @param {Number} min
* @param {Number} max
* @return {Number}
*/
2022-11-27 02:35:28 -05:00
between: function (min, max) {
2022-08-14 05:51:45 -04:00
return Math.floor(
2022-11-27 02:35:28 -05:00
Math.random() * (max - min) + min
)
}
}