Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 767 Bytes

File metadata and controls

25 lines (18 loc) · 767 Bytes

primexpr

NPM Build Status NPM

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?

😂