async function asyncForEach()

in src/metering-hourly-job.js [9:13]


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