Skip to main content
Module

std/bytes/mod.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.91.0/bytes/mod.ts";

Functions

Concatenate multiple binary arrays and return new one.

Check source array contains pattern array.

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

Check whether binary array ends with suffix.

Check whether binary arrays are equal to each other.

Find first index of binary pattern from source. If not found, then return -1

Find last index of binary pattern from source. If not found, then return -1.

Repeat bytes. returns a new byte slice consisting of count copies of b.

Check whether binary array starts with prefix.