Created
August 28, 2013 22:46
-
-
Save tj/6372362 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a = somestream | |
var b = somestream2 | |
var c = somestream3 | |
a.on('error', onerror) | |
b.on('error', onerror) | |
c.on('error', onerror) | |
// ^ :( | |
a.pipe(b).pipe(c) |
@isaacs if we had some way to get at the parent(s) it would really help with a lot of APIs, error handling could be delegated nicely for scenarios like this
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
a.on('error', onerror).pipe(b).on('error', onerror).pipe(c).on('error', onerror)