Package Exports
- unpipe
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (unpipe) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
unpipe
Unpipe a stream from all destinations.
Installation
$ npm install unpipe
API
var unpipe = require('unpipe')
unpipe(stream)
Unpipes all destinations from a given stream. With stream 2+, this is
equivalent to stream.unpipe()
. When used with streams 1 style streams
(typically Node.js 0.8 and below), this module attempts to undo the
actions done in stream.pipe(dest)
.