Skip to content

Instantly share code, notes, and snippets.

@eschwartz
Created July 10, 2017 20:17
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Async map
import * as _ from 'lodash';
async function mapAsync<TVal, TRes>(items:TVal[], iter:(val:TVal, i:(number | string)) => Promise<TRes>):Promise<TRes[]> {
return Promise.all(_.map(items, iter));
}
export default mapAsync;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment