Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

browserCrypto

import { browserCrypto } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/randomjs/mod.ts";

An Engine that relies on the globally-available crypto.getRandomValues, which is typically available in modern browsers.

See https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues

If unavailable or otherwise non-functioning, then browserCrypto will likely throw on the first call to next().

const browserCrypto: Engine;