UNPKG

@hiddenmarket/styleguide

Version:

[![HIDDEN MARKET](https://hidden.market/wp-content/uploads/2019/05/logo-signature-hidden-market.png)](https://styleguide.hidden.market/index.html)

7 lines 218 B
function randomNoGenerator(min, max) { if(typeof(max) !== 'number' && typeof(min) !== 'number') { min = 0; max = 1; } return (Math.random() * (max-min)) + min; } module.exports = randomNoGenerator;