- From: Adam Rice <notifications@github.com>
- Date: Mon, 21 Aug 2017 08:16:00 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 21 August 2017 15:16:22 UTC
I just want to check that this is the expected behaviour. ```javascript const ts = new TransformStream(); const closedPromise = ts.writable.getWriter().closed; ts.readable.cancel(new Error('hay')); closedPromise.catch(e => console.log(e.message)); // logs 'Readable side canceled' ``` -- 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/768
Received on Monday, 21 August 2017 15:16:22 UTC