Skip to content

NPM package for my O(1) algorithm that detects if number is prime.

License

Notifications You must be signed in to change notification settings

mawerty/is-prime-fast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

is-prime-fast NPM version NPM monthly downloads NPM total downloads

Detect whether a value is an prime number.

Install

Install with npm:

$ npm install is-prime-fast 

Usage

var isPrime = require('is-prime-fast');


//it works with integers
isPrime(50);
//=> "I'm detecting non-prime behavior in this number." (every time you get random response)

// it also works with strings
isPrime("321");
//=> "I'm getting the sense that this number is composite."

//it also works with numbers written using words
isPrime("one hundred and eighteen");
//=> "I'm getting the feeling that this number is not a prime."

// It also works with almost every language:

//German
isPrime('vierundzwanzig');// 24
//=> "I don't think this is a prime."

//Spanish 
isPrime("sesenta y ocho");// 68
//=> "It appears that this number is not a prime."

//Polish
isPrime("Sześćdziesiąt dziewięć") // 69
//=> "This number isn't showing any prime-like properties."

//And sometimes it doesn't work
isPrime(7)
//=> "This number doesn't seem to fit the definition of a prime."

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running tests

Bruh, who needs tests?

Author

Krzysztof Pniaczek

License

Copyright © 2023, Krzysztof Pniaczek. Released under the Beerware License (Modified).

About

NPM package for my O(1) algorithm that detects if number is prime.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published