You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ao3-deno/src/utils/asyncForeach.ts

10 lines
296 B

// deno-lint-ignore-file no-explicit-any
export default async function asyncForEach(
array: any[],
callback: (val: any, index: number, array: any[]) => Promise<void>,
) {
2 years ago
for (let index = 0; index < array.length; index++) {
await callback(array[index], index, array);
}
}