Skip to content

Instantly share code, notes, and snippets.

@tjjfvi
Created October 23, 2018 17:07
Show Gist options
  • Save tjjfvi/fff3a3b10ca563222a9976670fe1e4b9 to your computer and use it in GitHub Desktop.
Save tjjfvi/fff3a3b10ca563222a9976670fe1e4b9 to your computer and use it in GitHub Desktop.
Array.prototype,asyncMap(fn)
Array.prototype.asyncMap = function(fn){
return Promise.all(this.map(fn))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment