mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-09 13:30:04 +00:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
export async function asyncForEach(array: any[], callback: any) {
|
|
for (let index = 0; index < array.length; index++) {
|
|
await callback(array[index], index, array)
|
|
}
|
|
}
|