Skip to main content
The Deno 2 Release Candidate is here
Learn more
Latest
function copyBytes
import { copyBytes } from "https://deno.land/x/denjucks@1.1.1/src/deps/path/std/io/util.ts";

Copy bytes from one Uint8Array to another. Bytes from src which don't fit into dst will not be copied.

Parameters

src: Uint8Array

Source byte array

dst: Uint8Array

Destination byte array

optional
off = [UNSUPPORTED]

Offset into dst at which to begin writing values from src.

Returns

number

number of bytes copied