Created
February 16, 2018 07:15
-
-
Save Yopadd/d1381e0fdc1aa6bedaeb36b7a8381892 to your computer and use it in GitHub Desktop.
return a flatten map resolved by async function
This file contains 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
async function asyncFlatMap (arr, asyncFn) { | |
return Promise.all(flatten(await asyncMap(arr, asyncFn))) | |
} | |
function asyncMap (arr, asyncFn) { | |
return Promise.all(arr.map(asyncFn)) | |
} | |
function flatMap (arr, fn) { | |
return flatten(arr.map(fn)) | |
} | |
function flatten (arr) { | |
return [].concat(...arr) | |
} | |
module.exports = { | |
asyncFlatMap, | |
asyncMap, | |
flatMap, | |
flatten | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@peveuve If you want flat first you don't need a function. You could write
flatten(arr).map(fn)
.Actually, this gist is a little bit obsolete because now we have official flatMap and flat