- From: Adam Rice <notifications@github.com>
- Date: Wed, 18 Mar 2020 18:08:28 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 19 March 2020 01:08:44 UTC
They are the same. ReadableStream.cancel() is just a convenience method, roughly equivalent to ```javascript const reader = readable.getReader(); reader.cancel(); reader.releaseLock(); ``` -- 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/1033#issuecomment-600933751
Received on Thursday, 19 March 2020 01:08:44 UTC