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