- From: Takeshi Yoshino <notifications@github.com>
- Date: Thu, 05 Feb 2015 22:05:29 -0800
- To: whatwg/streams <streams@noreply.github.com>
Received on Friday, 6 February 2015 06:05:56 UTC
> @@ -159,6 +159,42 @@ export function IsReadableStream(x) { > return true; > } > > +export function PutBackIntoReadableStream(stream, chunk) { > + if (stream._state === 'closed') { > + throw new TypeError('stream is closed'); It seems the issue should be addressed by ReadableByteStream. I.e. specifying the `size` argument based on `maxSize`? --- Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/275/files#r24224266
Received on Friday, 6 February 2015 06:05:56 UTC