xxxxxxxxxx
// Adapted to support uInt32
const getRandomInt = (min, max) => {
// Create byte array and fill with 1 random number
let byteArray = new Uint32Array(1);
window.crypto.getRandomValues(byteArray);
let range = max - min + 1;
let max_range = 4294967295;
if (byteArray[0] >= Math.floor(max_range / range) * range)
return getRandomInt(min, max);
return min + (byteArray[0] % range);
}