All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.cjs.chunk.js Maven / Gradle / Ivy

The newest version!
var _setup = require('./_setup.js');

// Chunk a single array into multiple arrays, each containing `count` or fewer
// items.
function chunk(array, count) {
  if (count == null || count < 1) return [];
  var result = [];
  var i = 0, length = array.length;
  while (i < length) {
    result.push(_setup.slice.call(array, i, i += count));
  }
  return result;
}

module.exports = chunk;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy