lhl 2bdf874dbb create 1 tháng trước cách đây
..
test 2bdf874dbb create 1 tháng trước cách đây
.travis.yml 2bdf874dbb create 1 tháng trước cách đây
LICENSE.APACHE2 2bdf874dbb create 1 tháng trước cách đây
LICENSE.MIT 2bdf874dbb create 1 tháng trước cách đây
index.js 2bdf874dbb create 1 tháng trước cách đây
package.json 2bdf874dbb create 1 tháng trước cách đây
readme.markdown 2bdf874dbb create 1 tháng trước cách đây

readme.markdown

#through

build status

Easy way to create a Stream that is both readable and writable. Pass in optional write and end methods. through takes care of pause/resume logic. Use this.pause() and this.resume() to manage flow. Check this.paused to see current flow state. (write always returns !this.paused)

this function is the basis for most of the syncronous streams in event-stream.

var through = require('through')

through(function write(data) {
    this.emit('data', data)
    //this.pause() 
  },
  function end () { //optional
    this.emit('end')
  })

License

MIT / Apache2