1.0.1 • Published 9 years ago

is-number-prime v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

is-number-prime

Build Status

Checks if number is prime or not.

Installation

npm install is-number-prime --save

Usage

import isNumberPrime from 'is-number-prime';
isNumberPrime(13); // true
isNumberPrime(10); // false
isNumberPrime(15485863); // true

Tests

npm test

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Release History

  • 1.0.0 Initial release
  • 1.0.1 Faster