isPrime
import { isPrime } from "https://raw.githubusercontent.com/JOTSR/Denum/master/mod.ts";Test if a given number is prime or not Warning: O(n) algorithm
function isPrime<T extends number | bigint>(int: T): boolean;
import { isPrime } from "https://raw.githubusercontent.com/JOTSR/Denum/master/mod.ts";Test if a given number is prime or not Warning: O(n) algorithm