Re: [whatwg/streams] Closing the controller with a pipe (#606)

To test quickly:
```
new ReadableStream({
  start(controller) {
    controller.close();
  }
}).pipeThrough(new TransformStream()).pipeTo(new WritableStream())
```

-- 
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/606#issuecomment-259392981

Received on Wednesday, 9 November 2016 11:28:03 UTC