Skip to main content
Module

x/simple_utility/mod.pure.ts>byteConcat

Simplify processing for Deno.
Go to Latest
function byteConcat
Re-export
import { byteConcat } from "https://deno.land/x/simple_utility@v2.0.10/mod.pure.ts";

Concat multiple buffer sources into single binary.

Examples

Example 1

const byte = byteConcat(new Uint8Array([1, 2, 3]), new Uint8Array([4, 5, 6]));

Returns

Uint8Array