- From: Jimmy Karl Roland Wärting <notifications@github.com>
- Date: Fri, 02 Sep 2016 12:23:10 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Friday, 2 September 2016 19:23:38 UTC
What would you choose to do this: ```javascript httpResponseBody .pipeThrough(decompressorTransform) .pipeThrough(ignoreNonImageFilesTransform) .pipeTo(mediaGallery); ``` instead of just doing this: ```javascript httpResponseBody .pipeTo(decompressorTransform) .pipeTo(ignoreNonImageFilesTransform) .pipeTo(mediaGallery); ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/issues/515#issuecomment-244465718
Received on Friday, 2 September 2016 19:23:38 UTC