This file contains hidden or 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
/** | |
* Trying out different code approaches to break out of a | |
* deep callback chain in node.js | |
* | |
*/ | |
/** | |
* TEST #1 - Using a try/catch block | |
*/ | |
(function (throwError) { |
NewerOlder