rand.js 110 Bytes Raw Blame History Permalink 1 2 3 module.exports = function rand(floor, ceil) { return Math.floor(Math.random() * (ceil - floor + 1)) + floor }