Re: [whatwg/streams] What would happen if the data stream "pauses" then continues (see mode detail below) (#1008)

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