Concatenate two (or n) streams

前端 未结 10 1272
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-24 02:34
  • 2 streams:

    Given readable streams stream1 and stream2, what\'s an idiomatic (concise) way to get a stream containing

10条回答
  •  梦毁少年i
    2020-12-24 02:55

    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]);
    

提交回复
热议问题