Skip to main content
Module

x/discord_rpc_deno/deps.ts>bytes.startsWith

port of @xhayper/discord-rpc to deno
Go to Latest
function bytes.startsWith
import { bytes } from "https://deno.land/x/discord_rpc_deno@v1.1.1/deps.ts";
const { startsWith } = bytes;

Returns true if the prefix array appears at the start of the source array, false otherwise.

The complexity of this function is O(prefix.length).

import { startsWith } from "https://deno.land/std@0.224.0/bytes/starts_with.ts";
const source = new Uint8Array([0, 1, 2, 1, 2, 1, 2, 3]);
const prefix = new Uint8Array([0, 1, 2]);
console.log(startsWith(source, prefix)); // true

Parameters

source: Uint8Array
prefix: Uint8Array

Returns

boolean