UNPKG

stuffs

Version:

Some useful stuffs packed to here.

7 lines 157 B
/** * @param {Number} min * @param {Number} max */ module.exports = function randomFloat(min, max) { return Math.random() * (max - min) + min; }