ixfx
    Preparing search index...

    Function filter

    • Filters an iterable, only yielding items which match f.

      filter([1, 2, 3, 4], e => e % 2 == 0);
      returns [2, 4]

      Type Parameters

      • V

      Parameters

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

      Returns AsyncGenerator<Awaited<V>, void, unknown>