- From: Jonas Sicking <notifications@github.com>
- Date: Tue, 24 Mar 2015 17:52:49 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Wednesday, 25 March 2015 00:53:16 UTC
So that's true even for piping? I.e. if I do
```javascript
var writable = nativeFileSystemAPI.appendToFile(filename);
writable.write = function(buffer) {
console.log(buffer);
WritableStream.prototype.write.call(this, buffer);
}
readable.pipeTo(writable);
```
Then nothing will get logged since `pipeTo` is reaching into the innards of the argument that's passed to it, rather than using the public API?
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/issues/276#issuecomment-85766105
Received on Wednesday, 25 March 2015 00:53:16 UTC