Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
function concat
import { concat } from "https://deno.land/x/embassyd_sdk@v0.3.4.3.0-alpha1/lib/esm/deps/deno.land/std@0.140.0/bytes/mod.js";

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]