- From: Domenic Denicola <notifications@github.com>
- Date: Fri, 07 Oct 2016 11:38:35 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Friday, 7 October 2016 18:39:26 UTC
domenic commented on this pull request.
> @@ -0,0 +1,74 @@
+"use strict";
+
+self.recordingReadableStream = (extras = {}, strategy) => {
+ let controllerToCopyOver;
+ const stream = new ReadableStream({
+ start(controller) {
+ controllerToCopyOver = controller;
+
+ if (extras.start) {
Oh gross. Definitely not in this repo; I think we have a lint rule disallowing such elision :)
--
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/526
Received on Friday, 7 October 2016 18:39:26 UTC