I am wondering how node.js oprates is if you are connecting two different read streams to the same destination at the same time. For instance:
var a = fs.createReadStream('a')
var b = fs.createReadStream('b')
var c = fs.createWriteStream('c')
a.pipe(c, {end:false})
b.pipe(c, {end:false})
Does this write a to c and then b to c? Or did it ruin everything?
source
share