Add node modules and new code for release (#57)
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
da63a48ad7
commit
a517f2ff65
15
node_modules/underscore/cjs/chunk.js
generated
vendored
Normal file
15
node_modules/underscore/cjs/chunk.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
Reference in New Issue
Block a user