export default some; /** * Functional version of `Array.forEach`. More flexible and applicable to * other array-like data types like `NodeList`. * * @template T * @param {(item: T, i: number) => boolean} f - Modifier function applied on every item of the array. * @return {(arr: Array) => boolean} Modified array-like variable. */ declare function some(f: (item: T, i: number) => boolean): (arr: Array) => boolean;