pdf-lite - v1.0.1
    Preparing search index...
    • Concatenates multiple Uint8Array instances into a single ByteArray.

      Parameters

      • ...arrays: Uint8Array<ArrayBufferLike>[]

        The arrays to concatenate.

      Returns ByteArray

      A new ByteArray containing all input arrays concatenated in order.

      const result = concatUint8Arrays(
      new Uint8Array([1, 2]),
      new Uint8Array([3, 4])
      ) // Returns Uint8Array([1, 2, 3, 4])