UNPKG

@tsdotnet/linq

Version:

A familiar set of functions that operate on JavaScript iterables (ES2015+) in a similar way to .NET's LINQ does with enumerables.

4 lines (3 loc) 222 B
import { PredicateWithIndex } from '@tsdotnet/common-interfaces'; import { IterableTransform } from '../IterableTransform'; export default function any<T>(predicate?: PredicateWithIndex<T>): IterableTransform<T, boolean>;