- From: Marvin Hagemeister <notifications@github.com>
- Date: Fri, 14 Oct 2016 09:23:04 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Friday, 14 October 2016 16:24:02 UTC
marvinhagemeister commented on this pull request. > + c = controller; + }, + transform() { + }, + flush() { + c.enqueue('x'); + c.enqueue('y'); + } + }); + + const reader = ts.readable.getReader(); + + const writer = ts.writable.getWriter(); + writer.write('a'); + writer.close(); + reader.read().then(result1 => { Oh, that somehow slipped through the rebase -- 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/pull/531
Received on Friday, 14 October 2016 16:24:02 UTC