- From: Adam Rice <notifications@github.com>
- Date: Sun, 20 Aug 2017 22:36:29 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 21 August 2017 05:36:50 UTC
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