gpmu-ojs-import-js/src/helpers.js
2019-03-15 07:36:09 +03:00

5 lines
174 B
JavaScript

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