PR #430 breaks fluent interface nature of **Node.js** Stream: To reproduce, uncomment `require("zone.js")`. The code will crash because **createInterface** and **on** do not return _self_ which prevents cascading ``` js //require("zone.js") const fs = require("fs") require('readline').createInterface({ input: fs.createReadStream('/etc/hosts') }).on('line', function (line) { console.log(line) }).on('close', function () { console.log('done') }); ```
PR #430 breaks fluent interface nature of Node.js Stream:
To reproduce, uncomment
require("zone.js"). The code will crash because createInterface and on do not return self which prevents cascading