getPrimes
import { getPrimes } from "https://raw.githubusercontent.com/JOTSR/Denum/master/mod.ts";It returns an array of prime numbers of the specified quantity Warning: bounds are excluded
function getPrimes<T extends number | bigint>(quantity: T): T[];
function getPrimes<T extends number | bigint>(min: T, max: T): T[];
function getPrimes<T extends number | bigint>(...args: T[]): T[];
§
getPrimes<T extends number | bigint>(quantity: T): T[]
[src]It returns an array of prime numbers of the specified quantity Warning: bounds are excluded