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
34
frontend/node_modules/es-toolkit/dist/compat/array/concat.js
generated
vendored
Normal file
34
frontend/node_modules/es-toolkit/dist/compat/array/concat.js
generated
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
const require_flatten = require("../../array/flatten.js");
|
||||
//#region src/compat/array/concat.ts
|
||||
/**
|
||||
* Concatenates multiple arrays and values into a single array.
|
||||
*
|
||||
* @template T The type of elements in the array.
|
||||
* @param values - The values and/or arrays to concatenate.
|
||||
* @returns A new array containing all the input values.
|
||||
*
|
||||
* @example
|
||||
* // Concatenate individual values
|
||||
* concat(1, 2, 3);
|
||||
* // returns [1, 2, 3]
|
||||
*
|
||||
* @example
|
||||
* // Concatenate arrays of values
|
||||
* concat([1, 2], [3, 4]);
|
||||
* // returns [1, 2, 3, 4]
|
||||
*
|
||||
* @example
|
||||
* // Concatenate a mix of individual values and arrays
|
||||
* concat(1, [2, 3], 4);
|
||||
* // returns [1, 2, 3, 4]
|
||||
*
|
||||
* @example
|
||||
* // Concatenate nested arrays
|
||||
* concat([1, [2, 3]], 4);
|
||||
* // returns [1, [2, 3], 4]
|
||||
*/
|
||||
function concat(...values) {
|
||||
return require_flatten.flatten(values);
|
||||
}
|
||||
//#endregion
|
||||
exports.concat = concat;
|
||||
Loading…
Add table
Add a link
Reference in a new issue