Package detail

pull-hang

dominictarr12MIT0.0.0

a pull-stream source that does nothing until you abort it.

readme

pull-hang

a pull-stream source that does nothing until you abort it.

var Hang = require('pull-hang')


var hang = Hang()
pull(
  hang
  pull.collect(function (err) {
    //this will never callback, until you call hang(true, cb)
  })
)

//abort the stream after a timeout.
setTimeout(function () {
  hang(true, function () {})
}, 100)

License

MIT