neet / rxjs-async-iterator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Async iterators for RxJS

Adds async iterators (aka for-await-of loops)

Installation

The package is served via npm:

npm i --save rxjs-async-iterator

Usage

import {from} from 'rxjs';
import {delay} from 'rxjs/operators';
import {toAsyncIterable} from 'rxjs-async-iterator';

const numbers$ = from([1, 2, 3]).pipe(delay(100));

for async (const value of toAsyncIterable(numbers$)) {
    console.log(value);
}

About

License:Other


Languages

Language:TypeScript 97.7%Language:JavaScript 2.3%