Skip to content

Latest commit

 

History

History
98 lines (69 loc) · 3.02 KB

README.md

File metadata and controls

98 lines (69 loc) · 3.02 KB

Typescript Fluent Iterators

Provides fluent api operations on iterators, async iterators and promise iterators.

Description

The library provides the common transformation, filtering and aggregation operations on iterators, async iterators and promise iterators.

Quick start guide

Install from Node Package Manager: npm i ts-fluent-iterators

Add the following code to your index file:

import { iterator, Generators } from 'ts-fluent-iterators';

const iter = iterator(Generators.range());

console.log(
  `The first five even numbers are: ${iter
    .filter(n => n % 2 === 0)
    .take(5)
    .collect()}`
);

Operations supported

Usage

Click here for the Full API Reference.

License

Licensed under MIT.