Re: [whatwg/streams] Question: what is the difference of pipeThrough and pipeTo? (#515)

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