- From: Adam Rice <notifications@github.com>
- Date: Fri, 27 Oct 2017 12:33:27 +0000 (UTC)
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 27 October 2017 12:33:50 UTC
ricea commented on this pull request.
> + flush(controller) {
+ if (partialChunk.length > 0) {
+ controller.enqueue(partialChunk);
+ }
+ }
+ });
+ }
+</code></pre>
+
+This would be used in code like:
+<pre><code class="lang-javascript">
+ fetchEvent.respondWith(new Response(fetch(url).then(response =>
+ response.body.pipeThrough(LipFuzzTransform({ userName, displayName, icon, date })))));
+</code></pre>
+
+<div class="note">For simplicity, <code>LipFuzzTransform()</code> performs unescaped text substitutions. In real
Done.
--
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/846#discussion_r147398597
Received on Friday, 27 October 2017 12:33:50 UTC