Re: [whatwg/streams] What is the expected behaviour of .pipeThrough()? (#765)

Returning to the original question, pipeThrough is approximately equivalent to

```javascript
function pipeThrough({writable, readable}) {
  this.pipeTo(writable);
  return readable;
}
```

Key to this discussion is that pipeThrough() does not create any link between `readable` and `writable`.

-- 
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/765#issuecomment-323650548

Received on Monday, 21 August 2017 05:36:50 UTC