Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cae411eae7
commit
1c411e402e
19809 changed files with 1962608 additions and 97 deletions
35
frontend/node_modules/es-toolkit/dist/compat/array/chunk.mjs
generated
vendored
Normal file
35
frontend/node_modules/es-toolkit/dist/compat/array/chunk.mjs
generated
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
import { chunk as chunk$1 } from "../../array/chunk.mjs";
|
||||
import { toArray } from "../_internal/toArray.mjs";
|
||||
import { isArrayLike } from "../predicate/isArrayLike.mjs";
|
||||
//#region src/compat/array/chunk.ts
|
||||
/**
|
||||
* Splits an array into smaller arrays of a specified length.
|
||||
*
|
||||
* This function takes an input array and divides it into multiple smaller arrays,
|
||||
* each of a specified length. If the input array cannot be evenly divided,
|
||||
* the final sub-array will contain the remaining elements.
|
||||
*
|
||||
* @template T The type of elements in the array.
|
||||
* @param arr - The array to be chunked into smaller arrays.
|
||||
* @param size - The size of each smaller array. Must be a positive integer.
|
||||
* @returns A two-dimensional array where each sub-array has a maximum length of `size`.
|
||||
*
|
||||
* @example
|
||||
* // Splits an array of numbers into sub-arrays of length 2
|
||||
* chunk([1, 2, 3, 4, 5], 2);
|
||||
* // Returns: [[1, 2], [3, 4], [5]]
|
||||
*
|
||||
* @example
|
||||
* // Splits an array of strings into sub-arrays of length 3
|
||||
* chunk(['a', 'b', 'c', 'd', 'e', 'f', 'g'], 3);
|
||||
* // Returns: [['a', 'b', 'c'], ['d', 'e', 'f'], ['g']]
|
||||
*/
|
||||
function chunk(arr, size = 1) {
|
||||
size = Math.max(Math.floor(size), 0);
|
||||
if (size === 0 || !isArrayLike(arr) || Number.isNaN(size)) return [];
|
||||
const array = toArray(arr);
|
||||
if (!isFinite(size)) return [array];
|
||||
return chunk$1(array, size);
|
||||
}
|
||||
//#endregion
|
||||
export { chunk };
|
||||
Loading…
Add table
Add a link
Reference in a new issue