import getRandomValues from'./getRandomValues';
/*
* Cryptographically secure pseudorandom number generator
* As Math.random() is cryptographically not safe to use
*/exportdefaultfunctioncryptoSecureRandomInt() {
returngetRandomValues(newUint32Array(1))[0];
}