Created
January 28, 2015 15:49
-
-
Save adamrneary/a63a1f84d21aee2cd53b to your computer and use it in GitHub Desktop.
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
| // And boom goes the dynamite. | |
| Q.all([ | |
| getNextFewUsers, | |
| getConsultantCount, | |
| getCompanyCount | |
| ]) | |
| .then(function() { | |
| callback(null, returnObject) | |
| }) | |
| .catch(function(err) { | |
| callback(err, null) | |
| }) | |
| .done() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment