nth-prime
v1.0.4
Published
A simple function that returns the nth prime number
Downloads
8
Readme
nth-prime

A simple npm package with a function that returns the nth prime number.
Installation
npm i -S nth-primeUsage
var nthPrime = require('nth-prime');
console.log(nthPrime(1)); // prints 2
console.log(nthPrime(2)); // prints 3
console.log(nthPrime(5)); // prints 11
console.log(nthPrime(1000000)); // prints 15485863
