Skip to main content
Module

std/bytes/mod.ts>concat

Deno standard library
Go to Latest
function concat
import { concat } from "https://deno.land/std@0.75.0/bytes/mod.ts";

Concatenate two binary arrays and return new one.

Parameters

origin: Uint8Array

origin array to concatenate

b: Uint8Array

array to concatenate with origin

Returns

Uint8Array