1.1.3 • Published 6 months ago

crypto-sieve v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Crypto Sieve

Low memory-usage implementation of a Sieve of Eratosthenes.

Install

npm install crypto-sieve

Usage

import sieve from 'crypto-sieve';

// Let's generate all prime numbers <= 100

sieve ( 100 ); // => [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97]

// It can be used as an iterator also

for ( const prime of sieve.iterator ( 100 ) ) {

  // Do something with prime...

}

License

MIT © Fabio Spampinato

1.1.3

6 months ago

1.1.1

1 year ago

1.1.2

1 year ago

1.1.0

2 years ago

1.0.0

2 years ago