ixfx
    Preparing search index...

    Function fromIterable

    Yield values from iterable, one at a time. Use interval to add time between each item. The first item is yielded without delay.

    Iterable or AsyncIterable

    Interval to wait between yield

    • Type Parameters

      • V

      Parameters

      • iterable: Iterable<V>

      Returns Generator<V>

    • Type Parameters

      • V

      Parameters

      • iterable: AsyncIterable<V, any, any> | Iterable<V, any, any>
      • interval: Interval

      Returns AsyncGenerator<V>