UNPKG

jazzy-utility

Version:
6 lines (5 loc) 165 B
export default (min, max) => { const _min = Math.ceil(min); const _max = Math.floor(max); return Math.floor(Math.random() * (_max + 1 - _min)) + _min; };