Added the underscore node_module.
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
This commit is contained in:
13
node_modules/underscore/modules/chunk.js
generated
vendored
Normal file
13
node_modules/underscore/modules/chunk.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
import { slice } from './_setup.js';
|
||||
|
||||
// Chunk a single array into multiple arrays, each containing `count` or fewer
|
||||
// items.
|
||||
export default function chunk(array, count) {
|
||||
if (count == null || count < 1) return [];
|
||||
var result = [];
|
||||
var i = 0, length = array.length;
|
||||
while (i < length) {
|
||||
result.push(slice.call(array, i, i += count));
|
||||
}
|
||||
return result;
|
||||
}
|
Reference in New Issue
Block a user