1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-08 21:10:05 +00:00
Files
adapter/src/utils/asyncForEach.ts
2020-07-07 19:53:35 +01:00

6 lines
175 B
TypeScript

export async function asyncForEach(array: any[], callback: any) {
for (let index = 0; index < array.length; index++) {
await callback(array[index], index, array);
}
}