ixfx
    Preparing search index...

    Function some

    Returns true the first time f returns true. Useful for spotting any occurrence of data, and exiting quickly

    some([1, 2, 3, 4], e => e % 3 === 0);
    // Yields: true

    Iterable

    Filter function

    • Type Parameters

      • V

      Parameters

      • it: AsyncIterable<V>
      • f: (v: V) => boolean | Promise<boolean>

      Returns Promise<boolean>

    • Type Parameters

      • V

      Parameters

      • it: Iterable<V, any, any> | V[]
      • f: (v: V) => boolean

      Returns boolean