(function () {
const __javy_crypto_get_random_values = globalThis.__javy_crypto_get_random_values;
function getRandomValues(data) {
__javy_crypto_get_random_values(data.buffer, data.byteOffset, data.byteLength)
return new Uint8Array(data.buffer)
}
globalThis.crypto = {
getRandomValues
}
Reflect.deleteProperty(globalThis, "__javy_crypto_get_random_values");
})();