- From: Domenic Denicola <notifications@github.com>
- Date: Thu, 19 Mar 2015 03:02:25 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Thursday, 19 March 2015 10:02:51 UTC
> + }); > + > + return [branch1, branch2]; > + > + function readAndEnqueueInBoth() { > + reader.read().then( > + ({ value, done }) => { > + if (done) { > + close1(); > + close2(); > + return; > + } > + > + if (clone) { > + enqueue1(StructuredClone(value)); > + enqueue2(StructuredClone(value)); Fixed --- Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/302/files#r26741096
Received on Thursday, 19 March 2015 10:02:51 UTC