UNPKG

babu-random-generator

Version:
5 lines (4 loc) 168 B
export function randomNumberGenerator(min = 0, max = 100){ return Math.round(Math.random()*(max-min)+min); } // module.exports = randomNumberGenerator;