Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

11
node_modules/es-toolkit/dist/compat/math/max.d.mts generated vendored Normal file
View File

@@ -0,0 +1,11 @@
//#region src/compat/math/max.d.ts
/**
* Finds the element in an array that has the maximum value.
*
* @template T - The type of elements in the array.
* @param {ArrayLike<T> | null | undefined} [items] - The array of elements to search. Defaults to an empty array.
* @returns {T | undefined} - The element with the maximum value, or undefined if the array is empty.
*/
declare function max<T>(items: ArrayLike<T> | null | undefined): T | undefined;
//#endregion
export { max };