You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					14 lines
				
				370 B
			
		
		
			
		
	
	
					14 lines
				
				370 B
			| 
								 
											3 years ago
										 
									 | 
							
								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;
							 | 
						||
| 
								 | 
							
								}
							 |