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

std/bytes/mod.ts>concat

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function concat
import { concat } from "https://deno.land/std@0.141.0/bytes/mod.ts";

Concatenate the given arrays into a new Uint8Array.

import { concat } from "./mod.ts";
const a = new Uint8Array([0, 1, 2]);
const b = new Uint8Array([3, 4, 5]);
console.log(concat(a, b)); // [0, 1, 2, 3, 4, 5]

Parameters

...buf: Uint8Array[]

Returns

Uint8Array