Re: [streams] can streams be transferred via postMessage()? (#276)

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