mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
407 B
10 lines
407 B
8 years ago
|
module.exports.pipe = require('pump')
|
||
|
module.exports.each = require('stream-each')
|
||
|
module.exports.pipeline = require('pumpify')
|
||
|
module.exports.duplex = require('duplexify')
|
||
|
module.exports.through = require('through2')
|
||
|
module.exports.concat = require('concat-stream')
|
||
|
module.exports.finished = require('end-of-stream')
|
||
|
module.exports.from = require('from2')
|
||
|
module.exports.to = require('flush-write-stream')
|