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
29
frontend/node_modules/es-toolkit/dist/compat/array/dropWhile.d.mts
generated
vendored
Normal file
29
frontend/node_modules/es-toolkit/dist/compat/array/dropWhile.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
import { ListIteratee } from "../_internal/ListIteratee.mjs";
|
||||
|
||||
//#region src/compat/array/dropWhile.d.ts
|
||||
/**
|
||||
* Creates a slice of array excluding elements dropped from the beginning.
|
||||
* Elements are dropped until predicate returns falsey.
|
||||
* The predicate is invoked with three arguments: (value, index, array).
|
||||
*
|
||||
* @template T - The type of elements in the array
|
||||
* @param array - The array to query
|
||||
* @param [predicate=identity] - The function invoked per iteration
|
||||
* @returns Returns the slice of array
|
||||
*
|
||||
* @example
|
||||
* dropWhile([1, 2, 3], n => n < 3)
|
||||
* // => [3]
|
||||
*
|
||||
* dropWhile([{ a: 1, b: 2 }, { a: 1, b: 3 }], { a: 1 })
|
||||
* // => []
|
||||
*
|
||||
* dropWhile([{ a: 1, b: 2 }, { a: 1, b: 3 }], ['a', 1])
|
||||
* // => []
|
||||
*
|
||||
* dropWhile([{ a: 1, b: 2 }, { a: 1, b: 3 }], 'a')
|
||||
* // => []
|
||||
*/
|
||||
declare function dropWhile<T>(array: ArrayLike<T> | null | undefined, predicate?: ListIteratee<T>): T[];
|
||||
//#endregion
|
||||
export { dropWhile };
|
||||
Loading…
Add table
Add a link
Reference in a new issue