- From: Takeshi Yoshino <notifications@github.com>
- Date: Tue, 30 Jun 2015 02:18:09 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Tuesday, 30 June 2015 09:18:38 UTC
> @@ -0,0 +1,965 @@
> +const assert = require('assert');
> +import { CreateIterResultObject, InvokeOrNoop, PromiseInvokeOrNoop, typeIsObject } from './helpers';
> +
> +export default class ReadableByteStream {
> + constructor(underlyingByteSource = {}) {
> + this._state = 'readable';
> + this._reader = undefined;
> + this._storedError = undefined;
> +
> + this._controller = undefined;
Fixed 2bf0357a7fe4ccc2a78cfc1b0bb78a190a69cee4
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/361/files#r33554317
Received on Tuesday, 30 June 2015 09:18:38 UTC