- From: isonmad <notifications@github.com>
- Date: Wed, 26 Oct 2016 17:25:35 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Thursday, 27 October 2016 00:26:07 UTC
isonmad commented on this pull request. > @@ -262,12 +238,32 @@ class TransformStreamSource { transformStream._readableController = c; - return this._startPromise; + // delay the first source.pull call until there is backpressure + return this._startPromise.then(() => { > here you just return the passed promise stored in _startPromise That's untrue. The promise returned by `.then()` is returned. -- 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/pull/550
Received on Thursday, 27 October 2016 00:26:07 UTC