export functiongetRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
// The maximum is inclusive and the minimum is inclusive
return Math.floor(Math.random() * (max - min + 1) + min);
}
//# sourceMappingURL=getRandomIntInclusive.js.map