Re: [streams] Introduce readable stream controller class (#310)

> @@ -47,6 +60,14 @@ function fakeReadableStreamReader() {
>    };
>  }
>  
> +function fakeReadableStreamController() {
> +  return {
> +    close() {},
> +    enqueue(chunk) { },
> +    error(e) { }

style nitpicking: use either of {} or { }?

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/310/files#r27463323

Received on Tuesday, 31 March 2015 09:12:49 UTC