Skip to content

Instantly share code, notes, and snippets.

@giper45
Created January 10, 2020 14:11
Show Gist options
  • Save giper45/64f8cfb7290c37e78f186097bab2a9a5 to your computer and use it in GitHub Desktop.
Save giper45/64f8cfb7290c37e78f186097bab2a9a5 to your computer and use it in GitHub Desktop.
Async for each nodejs
async function asyncForEach(array, callback) {
for (let index = 0; index < array.length; index++) {
await callback(array[index], index, array);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment