import { endsWith } from "https://deno.land/x/ayonli_jsext@v0.9.72/uint8array/index.ts";
Checks if the byte array ends with the given suffix.
Examples
Example 1
Example 1
import { endsWith } from "@ayonli/jsext/bytes";
const arr = new Uint8Array([1, 2, 3, 4, 5]);
console.log(endsWith(arr, new Uint8Array([4, 5]))); // true
console.log(endsWith(arr, new Uint8Array([5, 4]))); // false