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
26
frontend/node_modules/es-toolkit/dist/fp/array/unzipWith.js
generated
vendored
Normal file
26
frontend/node_modules/es-toolkit/dist/fp/array/unzipWith.js
generated
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
const require_unzipWith = require("../../array/unzipWith.js");
|
||||
//#region src/fp/array/unzipWith.ts
|
||||
/**
|
||||
* Creates a function that unzips grouped arrays and combines values by position.
|
||||
*
|
||||
* Values at the same position are passed to iteratee, and its return values form the
|
||||
* resulting array.
|
||||
*
|
||||
* @template T - The element type inside each grouped array.
|
||||
* @template R - The value returned by the iteratee.
|
||||
* @param iteratee - Called with the values at each position.
|
||||
* @returns A function that maps grouped arrays to combined values.
|
||||
*
|
||||
* @example
|
||||
* import { pipe, unzipWith } from 'es-toolkit/fp';
|
||||
*
|
||||
* pipe([[1, 10], [2, 20]], unzipWith((a, b) => a + b));
|
||||
* // => [3, 30]
|
||||
*/
|
||||
function unzipWith(iteratee) {
|
||||
return function(target) {
|
||||
return require_unzipWith.unzipWith(target, iteratee);
|
||||
};
|
||||
}
|
||||
//#endregion
|
||||
exports.unzipWith = unzipWith;
|
||||
Loading…
Add table
Add a link
Reference in a new issue