Is this wrong?
var f = fs.createWriteStream('file');
otherStream.pipe(f);
f.on('finish', function() { /*...*/ })
Should it not be this:
var f = fs.createWriteStream('file');
f.on('finish', function() { /*...*/ })
otherStream.pipe(f);
?
Which one is better, and why?