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
// create asyncMap func with array and callback as args | |
// create empty results list | |
// create counter set to 0 | |
// for func in array of functions | |
// invoke func with anonymous function as arg which takes item | |
// asign item to results sub index | |
// increment counter by 1 | |
// if last func in array | |
// invoke callback with results as arg |
OlderNewer