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
27
frontend/node_modules/es-toolkit/dist/set/every.mjs
generated
vendored
Normal file
27
frontend/node_modules/es-toolkit/dist/set/every.mjs
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
//#region src/set/every.ts
|
||||
/**
|
||||
* Tests whether all elements in a Set satisfy the provided predicate function.
|
||||
*
|
||||
* This function iterates through all elements of the Set and checks if the predicate function
|
||||
* returns true for every element. It returns true if the predicate is satisfied for all elements,
|
||||
* and false otherwise.
|
||||
*
|
||||
* @template T - The type of elements in the Set.
|
||||
* @param set - The Set to test.
|
||||
* @param doesMatch - A predicate function that tests each element.
|
||||
* @returns true if all elements satisfy the predicate, false otherwise.
|
||||
*
|
||||
* @example
|
||||
* const set = new Set([10, 20, 30]);
|
||||
* const result = every(set, (value) => value > 5);
|
||||
* // result will be: true
|
||||
*
|
||||
* const result2 = every(set, (value) => value > 15);
|
||||
* // result2 will be: false
|
||||
*/
|
||||
function every(set, doesMatch) {
|
||||
for (const value of set) if (!doesMatch(value, value, set)) return false;
|
||||
return true;
|
||||
}
|
||||
//#endregion
|
||||
export { every };
|
||||
Loading…
Add table
Add a link
Reference in a new issue