Philipp Horstenkamp 2b58149655
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
Added the underscore node_module.
2023-11-19 13:27:05 +01:00

16 lines
387 B
JavaScript

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;