UNPKG

react-redux-starter-thibault

Version:

Starter Kit for React + Redux application with Webpack

11 lines (10 loc) 234 B
/** * Get a random number in a certain range. * * @param {Number} min * @param {Number} max * @returns {Number} */ export function randomNumber(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }