crypto-sieve
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Crypto Sieve

Low memory-usage implementation of a Sieve of Eratosthenes.

Install

npm install --save crypto-sieve

Usage

import sieve from 'crypto-sieve';

// 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

Package Sidebar

Install

npm i crypto-sieve

Weekly Downloads

4

Version

1.1.2

License

none

Unpacked Size

6.08 kB

Total Files

10

Last publish

Collaborators

  • fabiospampinato