Re: [whatwg/streams] 'Splitter' stream? (#1030)

Usually you put the transform in the middle:

```js
existingReadable.pipeThrough(transform).pipeTo(existingWritable);
```

It's a bit hard for me to understand the code above because it appears to not be valid JavaScript.

-- 
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/1030#issuecomment-596239935

Received on Sunday, 8 March 2020 19:04:28 UTC