function endsWith
endsWith(source: Uint8Array,suffix: Uint8Array): booleanReturns true if the suffix array appears at the end of the source array, false otherwise.
The complexity of this function is O(suffix.length).
import { endsWith } from "@std/bytes/ends-with"; const source = new Uint8Array([0, 1, 2, 1, 2, 1, 2, 3]); const suffix = new Uint8Array([1, 2, 3]); console.log(endsWith(source, suffix)); // true
Parameters
source: Uint8Arraysuffix: Uint8Array