function startsWith
startsWith(source: Uint8Array,prefix: Uint8Array): booleanReturns 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 "@std/bytes/starts_with"; 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: Uint8Arrayprefix: Uint8Array