UNPKG

ice.fo.utils

Version:

6 lines (5 loc) 179 B
export default function randomInt(from = 0, to = 100) { const min = Math.ceil(from); const max = Math.floor(to); return Math.floor(Math.random() * (max - min + 1)) + min; }