|
|
|
|
|
by MatthewPhillips
4884 days ago
|
|
That depends, if you're using doSomethingElse a lot I'd just go ahead and wrap that as well, if you're using it once it's no big deal. doSomethingElse(errHandler(function(real, results) {
// foo
}));
If you're using Node you should be writing small(ish) modules anyways, so it doesn't lead to much code blote and its advantageous to consolidate your error handling in one or 2 spots. |
|