Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/proc/legacy/runners/utility.ts>concat

A better way to work with processes in Deno.
Very Popular
Go to Latest
function concat
import { concat } from "https://deno.land/x/proc@0.21.4/legacy/runners/utility.ts";

Concatenate arrays together, returning a single array containing the result.

Note that this may return the original source data rather than a copy in some circumstances.

Parameters

arrays: Uint8Array[]

The arrays to concatenate together.

Returns

Uint8Array

The result of the concatenation.