UNPKG

@andranik-arakelyan/js-utilities

Version:
1 lines 278 B
"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.randomInt=randomInt;exports.randomBoolean=randomBoolean;function randomInt(max,min=0){return Math.round(Math.random()*(max-min)+min)}function randomBoolean(){return Boolean(Math.round(Math.random()))}