UNPKG

cu8-lucky-draw-pool-engine

Version:
8 lines (7 loc) 239 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomInt = void 0; var randomInt = function (min, max) { return Math.floor(Math.random() * (max - min + 1) + min); }; exports.randomInt = randomInt;