Skip to content

Instantly share code, notes, and snippets.

@dan-maximov
Created May 8, 2019 16:13
Show Gist options
  • Save dan-maximov/1731ca0e6ad696293cedbff30bc6eca7 to your computer and use it in GitHub Desktop.
Save dan-maximov/1731ca0e6ad696293cedbff30bc6eca7 to your computer and use it in GitHub Desktop.
const asyncForEach = async (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