Skip to main content
Module

x/aleph/std.ts>bytes.copyBytes

The Full-stack Framework in Deno.
Very Popular
Go to Latest
function bytes.copyBytes
import { bytes } from "https://deno.land/x/aleph@v0.2.28/std.ts";
const { copyBytes } = bytes;

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