Pacote
    Preparing search index...

    Function chunked

    • Returns a chunked array of the provided array's elements.

      Size must be positive and can be greater than the number of elements in this collection.

      Type Parameters

      • T

      Parameters

      • size: number

        The number of elements to take in each chunk.

      • array: readonly T[]

        The array to chunk.

      Returns T[][]

      Chunked array of the provided array's elements.

      import { chunked } from '@pacote/array'

      const array = [1, 2, 3, 4]

      chunked(2, array) // => [[1, 2], [3, 4]]
      chunked(3, array) // => [[1, 2, 3], [4]]