npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

unpiper

1.0.0

@timoxley

npmHomeRepoSnykSocket
Downloads:1
$ npm install unpiper
DailyWeeklyMonthlyYearly

unpiper

Recursively unpipe streams. Unpipes everything.

Installation

npm install unpiper

Example

  var a = through()
  var b = through()
  var c = through()

  a = unpiper(a)

  a
  .pipe(b)
  .pipe(c)

  b.once('unpipe', function() {
    console.log('unpiped b')
  })
  c.once('unpipe', function() {
    console.log('unpiped c')
  })

  // c will be automatically unpiped.
  a.unpipe(b)
  // => unpiped b
  // => unpiped c

License

MIT