- From: Adam Rice <notifications@github.com>
- Date: Wed, 23 Aug 2017 09:35:58 +0000 (UTC)
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 23 August 2017 09:36:21 UTC
ricea commented on this pull request. > + if (extras.flush) { + return extras.flush(controller); + } + + return undefined; + } + }, writableStrategy, readableStrategy); + + stream.controller = controllerToCopyOver; + stream.events = []; + + return stream; +}; + +self.recordingIdentityTransformStream = (writableStrategy, readableStrategy) => { + const stream = self.recordingTransformStream({ I decided that having recordingTransformStream have different default behaviour from the equivalent TransformStream was confusing, and made it behave like a identity transform by default. -- 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/773#discussion_r134702994
Received on Wednesday, 23 August 2017 09:36:21 UTC