Skip to content

Instantly share code, notes, and snippets.

@Spyna
Created March 21, 2019 13:30
Show Gist options
  • Save Spyna/6d1193dd4700cce8d5334b4f9c2ae38c to your computer and use it in GitHub Desktop.
Save Spyna/6d1193dd4700cce8d5334b4f9c2ae38c 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