You cannot 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
304 B
CoffeeScript
10 lines
304 B
CoffeeScript
10 years ago
|
fs = require "fs"
|
||
|
CombinedStream = require "./"
|
||
|
devNull = require "dev-null"
|
||
|
|
||
|
combinedStream = CombinedStream.create()
|
||
|
combinedStream.append fs.createReadStream("./package.json")
|
||
|
combinedStream.append fs.createReadStream("./test.coffee")
|
||
|
#combinedStream.pipe devNull()
|
||
|
combinedStream.pipe process.stdout
|