Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/uint8array/index.ts>startsWith

A JavaScript extension package for building strong and modern applications.
Latest
function startsWith
import { startsWith } from "https://deno.land/x/ayonli_jsext@v0.9.72/uint8array/index.ts";

Checks if the byte array starts with the given prefix.

Examples

Example 1

import { startsWith } from "@ayonli/jsext/bytes";

const arr = new Uint8Array([1, 2, 3, 4, 5]);

console.log(startsWith(arr, new Uint8Array([1, 2]))); // true
console.log(startsWith(arr, new Uint8Array([2, 1]))); // false

Parameters

arr: Uint8Array
prefix: Uint8Array

Returns

boolean