- From: Yiqi Yan <notifications@github.com>
- Date: Thu, 08 Aug 2019 14:09:23 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 8 August 2019 21:09:46 UTC
Following up: I think it is true that streamdata.push(11, 12, 13) is appending data to the same memory allocation as original, because if we don't wait before streamdata.push(11, 12, 13), we actually get the output 11, 12, 13 ``` readAll(readableStream); streamdata.push(11, 12, 13); // append more data to the underlying source ``` The output is ``` 1 2 3 4 5 11 12 13 ``` -- 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/1008#issuecomment-519688351
Received on Thursday, 8 August 2019 21:09:46 UTC