/**
* @memberof module:util
*/
const getRandomInt = max => Math.floor(Math.random() * Math.floor(max));
module.exports = getRandomInt;
Source
Source
/**
* @memberof module:util
*/
const getRandomInt = max => Math.floor(Math.random() * Math.floor(max));
module.exports = getRandomInt;