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

x/png_mimic/deps.ts>byteConcat

Mimic any binary to PNG.
Latest
function byteConcat
import { byteConcat } from "https://deno.land/x/png_mimic@v1.0.3/deps.ts";

Concat multiple sources into single binary.

Examples

Example 1

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

Returns

Uint8Array