b0y-101 Mini Shell


Current Path : E:/www/km/04/media/com_eventgallery/common/js/
File Upload :
Current File : E:/www/km/04/media/com_eventgallery/common/js/BatchCreator.js

export function createBatches(items, max_items_per_batch) {

    let batches = [],
        currentBatch = [],
        i;

    for(i = 0; i < items.length; i++) {
        if (currentBatch.length === max_items_per_batch) {
            batches.push(currentBatch);
            currentBatch = [];
        }

        currentBatch.push(items[i]);
    }

    batches.push(currentBatch);

    return batches;
}

Copyright © 2019 by b0y-101