Skip to content

Instantly share code, notes, and snippets.

@tj
Created August 28, 2013 22:46
Show Gist options
  • Save tj/6372362 to your computer and use it in GitHub Desktop.
Save tj/6372362 to your computer and use it in GitHub Desktop.
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
Copy link

isaacs commented Aug 28, 2013

a.on('error', onerror).pipe(b).on('error', onerror).pipe(c).on('error', onerror)

@tj
Copy link
Author

tj commented Aug 28, 2013

@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