LendAndRegret/node_modules/es-toolkit/dist/compat/array/some.d.mts
2026-05-02 17:27:43 +08:00

32 lines
1.3 KiB
TypeScript

import { ListIterateeCustom } from '../_internal/ListIterateeCustom.mjs';
import { ObjectIterateeCustom } from '../_internal/ObjectIteratee.mjs';
/**
* Checks if predicate returns truthy for any element of collection.
*
* @template T
* @param {ArrayLike<T> | null | undefined} collection - The collection to iterate over.
* @param {ListIterateeCustom<T, boolean>} [predicate] - The function invoked per iteration.
* @returns {boolean} Returns `true` if any element passes the predicate check, else `false`.
*
* @example
* some([null, 0, 'yes', false], Boolean);
* // => true
*/
declare function some<T>(collection: ArrayLike<T> | null | undefined, predicate?: ListIterateeCustom<T, boolean>): boolean;
/**
* Checks if predicate returns truthy for any element of collection.
*
* @template T
* @param {T | null | undefined} collection - The object to iterate over.
* @param {ObjectIterateeCustom<T, boolean>} [predicate] - The function invoked per iteration.
* @returns {boolean} Returns `true` if any element passes the predicate check, else `false`.
*
* @example
* some({ 'a': 0, 'b': 1, 'c': 0 }, function(n) { return n > 0; });
* // => true
*/
declare function some<T extends object>(collection: T | null | undefined, predicate?: ObjectIterateeCustom<T, boolean>): boolean;
export { some };