mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 13:42:30 -05:00
18 lines
712 B
JavaScript
18 lines
712 B
JavaScript
|
/**
|
||
|
* Maps each value of an array into an async function, and returns an array of the results
|
||
|
* @param {array} arr - array of values
|
||
|
* @param {number} batchSize - number of calls to `func` to do at one time
|
||
|
* @param {function} func - async function to apply to all items in `arr`. Function should take one argument.
|
||
|
* @return {array} - results of `func` applied to each item in `arr`
|
||
|
*/
|
||
|
exports.batchMap = async (arr, batchSize, func) => {
|
||
|
const results = [];
|
||
|
for (let i = 0; i < arr.length; i += batchSize) {
|
||
|
const result = await Promise.all( // eslint-disable-line
|
||
|
arr.slice(i, i + batchSize).map(func)
|
||
|
);
|
||
|
results.push(...result);
|
||
|
}
|
||
|
return results;
|
||
|
};
|