UNPKG
better-crowdin
Version:
latest (1.0.1)
1.0.1
1.0.0
Crowdin CLI on steroids
better-crowdin
/
lib
/
utils
/
async
/
mapAsync.js
4 lines
(3 loc)
•
94 B
JavaScript
View Raw
1
2
3
4
module
.
exports
=
async
function
mapAsync
(
items, cb
) {
return
Promise
.
all
(items.
map
(cb)); };