- From: Domenic Denicola <notifications@github.com>
- Date: Tue, 30 Jun 2015 01:51:22 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Tuesday, 30 June 2015 08:51:53 UTC
> + }
> +
> + controller._insideUnderlyingByteSource = false;
> +}
> +
> +function CallPullInto(controller) {
> + const source = controller._underlyingByteSource;
> +
> + const pullIntoFunction = source['pullInto'];
> + if (pullIntoFunction === undefined) {
> + return;
> + }
> +
> + const stream = controller._controlledReadableByteStream;
> +
> + if (typeof pullIntoFunction !== 'function') {
Same as before, can leave for the catch block.
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/361/files#r33552400
Received on Tuesday, 30 June 2015 08:51:53 UTC