Skip to main content
Module

x/random_bigint/mod.ts

Generate a random BigInt by bit-length with Deno.
Latest
File
/** * This module finds a random bigint integer from a desired bit-length. * * @author Jacob Ian Matthews * @version 1.0 04/07/2020 */
// Export the functionexport { randomBigIntBits, randomBigIntRange } from "./src/randomBigInt.ts";