UNPKG

@sasjs/adapter

Version:

JavaScript adapter for SAS

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