UNPKG
better-crowdin
Version:
latest (1.0.1)
1.0.1
1.0.0
Crowdin CLI on steroids
better-crowdin
/
lib
/
utils
/
async
/
forEachAsync.js
6 lines
(4 loc)
•
131 B
JavaScript
View Raw
1
2
3
4
5
6
const
mapAsync =
require
(
'./mapAsync'
);
module
.
exports
=
async
function
forEachAsync
(
items, cb
) {
await
mapAsync
(items, cb); };