Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/mod3.ts>concat

A better way to work with processes in Deno.
Go to Latest
function concat
Re-export
import { concat } from "https://deno.land/x/proc@0.20.31/mod3.ts";

Fast-concatenate Uint8Arrays arrays together, returning a single array containing the result.

Note that this may return the original source data or a copy.

Parameters

arrays: Uint8Array[]

The arrays to concatenate together.

Returns

Uint8Array

The result of the concatenation.