Documentation
    Preparing search index...

    Function chunkify

    • From an iterable with unknown contents, yield arrays that contain items from the iterable up to a given limit.

      Type Parameters

      • TElements

        The type of the elements in the iterable.

      Parameters

      • iterable: Iterable<TElements>

        The iterable to retrieve items from.

      • limit: number

        The amount of items in each chunk.

      Returns Generator<TElements[], void, unknown>

      Chunks from the provided iterable.