Skip to main content
Module

x/proc/mod3.ts>concat

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
function concat
import { concat } from "https://deno.land/x/proc@0.20.8/mod3.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.