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:
jtricerolph 2026-07-20 14:37:36 +00:00
parent cae411eae7
commit 1c411e402e
19809 changed files with 1962608 additions and 97 deletions

22
frontend/node_modules/es-toolkit/dist/math/meanBy.js generated vendored Normal file
View file

@ -0,0 +1,22 @@
const require_sumBy = require("./sumBy.js");
//#region src/math/meanBy.ts
/**
* Calculates the average of an array of numbers when applying
* the `getValue` function to each element.
*
* If the array is empty, this function returns `NaN`.
*
* @template T - The type of elements in the array.
* @param items An array to calculate the average.
* @param getValue A function that selects a numeric value from each element.
* @returns The average of all the numbers as determined by the `getValue` function.
*
* @example
* meanBy([{ a: 1 }, { a: 2 }, { a: 3 }], x => x.a); // Returns: 2
* meanBy([], x => x.a); // Returns: NaN
*/
function meanBy(items, getValue) {
return require_sumBy.sumBy(items, (item) => getValue(item)) / items.length;
}
//#endregion
exports.meanBy = meanBy;