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

18
node_modules/es-toolkit/dist/compat/array/uniqBy.d.mts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import { ValueIteratee } from "../_internal/ValueIteratee.mjs";
//#region src/compat/array/uniqBy.d.ts
/**
* Creates a duplicate-free version of an array, using an optional transform function.
*
* @template T
* @param {ArrayLike<T> | null | undefined} array - The array to inspect.
* @param {ValueIteratee<T>} iteratee - The transform function or property name to get values from.
* @returns {T[]} Returns the new duplicate-free array.
*
* @example
* uniqBy([2.1, 1.2, 2.3], Math.floor);
* // => [2.1, 1.2]
*/
declare function uniqBy<T>(array: ArrayLike<T> | null | undefined, iteratee: ValueIteratee<T>): T[];
//#endregion
export { uniqBy };