https://github.com/lazarljubenovic/iterators
Some iterators.
https://github.com/lazarljubenovic/iterators
Last synced: about 1 month ago
JSON representation
Some iterators.
- Host: GitHub
- URL: https://github.com/lazarljubenovic/iterators
- Owner: lazarljubenovic
- Created: 2019-03-24T22:10:35.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-24T22:13:00.000Z (about 6 years ago)
- Last Synced: 2025-03-11T03:50:22.550Z (about 2 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Iterators
## Installation
```bash
$ yarn add @lazarljubenovic/iterators
```## Usage
```typescript
import * as its from '@lazarljubenovic/iterators'const array = [1, 2, 3, 4]
const paris = [...its.pairwise(array)] // => [[1, 2], [2, 3], [3, 4]]
```## List of iterators
- `pairwise`
- `pairwiseCircular`