UNPKG

dimon_randomizer_stav

Version:

randomizer

3 lines (2 loc) 166 B
const generateRandomNumberfromMinUpToMax = (min, max) => Math.floor(Math.random() * (max - min + 1) + min); module.exports = { generateRandomNumberfromMinUpToMax }