@jacobbubu/pull-through
v1.1.2
Published
[![Build Status](https://travis-ci.org/jacobbubu/pull-through.svg)](https://travis-ci.org/jacobbubu/pull-through) [![Coverage Status](https://coveralls.io/repos/github/jacobbubu/pull-through/badge.svg)](https://coveralls.io/github/jacobbubu/pull-through)
Downloads
6,170
Readme
@jacobbubu/pull-through
Rewritten through in TypeScript.
Example
Same Good Old Api, Brand New Underlying Mechanism.
import through from '@jacobbubu/pull-through'
const ts = through(function (data) {
this.queue(data)
}, function (end) {
this.queue(null)
})
Please see the test-cases for the detail.