2 streams:
Given readable streams stream1 and stream2, what\'s an idiomatic (concise) way to get a stream containing
stream1
stream2
streamee.js is a set of stream transformers and composers based on node 1.0+ streams and include a concatenate method:
var stream1ThenStream2 = streamee.concatenate([stream1, stream2]);