- From: Takeshi Yoshino <notifications@github.com>
- Date: Wed, 01 Jul 2015 00:23:38 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Wednesday, 1 July 2015 07:24:10 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') {
See the reply to the previous comment.
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/361/files#r33654117
Received on Wednesday, 1 July 2015 07:24:10 UTC