1.0.0 • Published 9 months ago

crypto-prime-test v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
9 months ago

Crypto Prime Test

A function that deterministically checks if a number is prime.

Install

npm install --save crypto-prime-test

Usage

import isPrime from 'crypto-prime-test';

// Check if a number is prime for sure, deterministically

isPrime ( 465207927154668043n ); // => true
isPrime ( 465207927154668041n ); // => false

License

MIT © Fabio Spampinato