1.0.11 • Published 5 years ago

rangely v1.0.11

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

rangely

Yet another range iterator similar to python's range() built-in. There are a million other libraries like it but this one is mine.

Full Docs: https://nathansmb.github.io/rangely/

Installation:

$ yarn add rangely

or

$ npm install rangely

Example Usage:

import { range } from "rangely";

for (const index of range(1, 10)) {
    console.log(index);
}

// Prints 1, 2, 3, 4, 5, 6, 7, 8, 9
1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago