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
19
frontend/node_modules/es-toolkit/dist/predicate/isFunction.js
generated
vendored
Normal file
19
frontend/node_modules/es-toolkit/dist/predicate/isFunction.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
//#region src/predicate/isFunction.ts
|
||||
/**
|
||||
* Checks if `value` is a function.
|
||||
*
|
||||
* @param value The value to check.
|
||||
* @returns Returns `true` if `value` is a function, else `false`.
|
||||
*
|
||||
* @example
|
||||
* isFunction(Array.prototype.slice); // true
|
||||
* isFunction(async function () {}); // true
|
||||
* isFunction(function* () {}); // true
|
||||
* isFunction(Proxy); // true
|
||||
* isFunction(Int8Array); // true
|
||||
*/
|
||||
function isFunction(value) {
|
||||
return typeof value === "function";
|
||||
}
|
||||
//#endregion
|
||||
exports.isFunction = isFunction;
|
||||
Loading…
Add table
Add a link
Reference in a new issue