primexpr
v1.1.1
Published
Check prime number using only RegExp!
Downloads
4
Readme
primexpr
Check if number is prime using only RegExp!
Why?
https://iluxonchik.github.io/regular-expression-check-if-number-is-prime/
Usage
Get the package via NPM: npm install primexpr
.
const isPrime = require('primexpr');
const PRIME = 10007;
console.log(isPrime(PRIME)); //true
const NOT_PRIME = 6;
console.log(isPrime(NOT_PRIME)); //false
This package is so awesome! How can I help?
😂