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

https://github.com/dweinstein/pull-delay

Delays the input through the stream. A pull.through for dominictarr's pull-stream.
https://github.com/dweinstein/pull-delay

Last synced: 2 months ago
JSON representation

Delays the input through the stream. A pull.through for dominictarr's pull-stream.

Awesome Lists containing this project

README

        

# SYNOPSIS

A through stream that delays the input by a rate.

# USAGE

```javascript
var delay = require('pull-delay');
var pull = require('pull-stream');

pull(
pull.values([1,2,3,4,5]),
delay(5000),
pull.through(console.log),
pull.drain()
);
```