You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
987 B
JavaScript
36 lines
987 B
JavaScript
import defined from "./defined.js";
|
|
import DeveloperError from "./DeveloperError.js";
|
|
|
|
/**
|
|
* Subdivides an array into a number of smaller, equal sized arrays.
|
|
*
|
|
* @function subdivideArray
|
|
*
|
|
* @param {Array} array The array to divide.
|
|
* @param {Number} numberOfArrays The number of arrays to divide the provided array into.
|
|
*
|
|
* @exception {DeveloperError} numberOfArrays must be greater than 0.
|
|
*/
|
|
function subdivideArray(array, numberOfArrays) {
|
|
//>>includeStart('debug', pragmas.debug);
|
|
if (!defined(array)) {
|
|
throw new DeveloperError("array is required.");
|
|
}
|
|
|
|
if (!defined(numberOfArrays) || numberOfArrays < 1) {
|
|
throw new DeveloperError("numberOfArrays must be greater than 0.");
|
|
}
|
|
//>>includeEnd('debug');
|
|
|
|
var result = [];
|
|
var len = array.length;
|
|
var i = 0;
|
|
while (i < len) {
|
|
var size = Math.ceil((len - i) / numberOfArrays--);
|
|
result.push(array.slice(i, i + size));
|
|
i += size;
|
|
}
|
|
return result;
|
|
}
|
|
export default subdivideArray;
|