- From: Domenic Denicola <notifications@github.com>
- Date: Mon, 16 Mar 2015 06:17:35 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Monday, 16 March 2015 13:18:01 UTC
> } > > - _rejectClosedPromise(reason) { > - this._closedPromise_reject(reason); > - this._closedPromise_resolve = null; > - this._closedPromise_reject = null; > + return undefined; > +} > + > +function CreateReadableStreamCloseFunction(stream) { > + return () => { > + if (stream._state !== 'readable') { > + return undefined; Hmm. I think you are right. Underlying source should be more careful than this. Open a new issue? --- Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/296/files#r26482675
Received on Monday, 16 March 2015 13:18:01 UTC