An open API service indexing awesome lists of open source software.

https://github.com/parro-it/ai-tap

Tap into an async iterable chain without affecting its value or state.
https://github.com/parro-it/ai-tap

Last synced: 10 months ago
JSON representation

Tap into an async iterable chain without affecting its value or state.

Awesome Lists containing this project

README

          

# ai-tap

[![Travis Build Status](https://img.shields.io/travis/parro-it/ai-tap/master.svg)](http://travis-ci.org/parro-it/ai-tap)
[![NPM downloads](https://img.shields.io/npm/dt/ai-tap.svg)](https://npmjs.org/package/ai-tap)

> Tap into an async iterable chain without affecting its value or state.

> **_This module is part of
> [Async iterable fun](https://github.com/parro-it/ai-fun), a complete toolset
> of modules to work with async iterables._**

## Usage

description of the example

```js
import aiTap from 'ai-tap';

for (const item of aiTap()) {
yield item;
};
```

This will output

```
```

## API

## Install

With [npm](https://npmjs.org/) installed, run

```bash
npm install --save ai-tap
```

## See Also

- [`parro-it/ai-fun`](https://github.com/parro-it/ai-fun) - A collection of modules to easy deal with async iterables.

- [`noffle/common-readme`](https://github.com/noffle/common-readme) - « a common readme for node ».

## License

MIT Licensed
© 2017 Andrea Parodi