Simple prime number and prime factorization package
npm install primes-simple

A simple Node.js package for either testing whether a number is prime, or returning the prime factors if a number is not prime.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Install package with:
```
npm install --save primes-simpleexample.js
In , a few examples are shown.
To run:
`javascript`
const primes = require('primes-simple')
let num = getRandomInt(10000,1000000) //or any num
prime(num)
index.test.js provides three tests for benchmarking purposes, and personalized tests may be generated. Simply follow the sytax, making sure to use assert.deepEqual.npm run test` in the console/terminal.
If the dependency for running tests (Mocha) is properly installed, simply write your tests and run
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests.
This project is licensed under the MIT License - see the LICENSE.md file for details