Skip to main content
Home
This release is 39 versions behind 1.0.6 — the latest version of @std/bytes. Jump to latest

Utilities to manipulate Uint8Arrays that are not built-in to JavaScript

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
2 years ago (0.197.0)
Package root>ends_with.ts
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. /** Returns true if the suffix array appears at the end of the source array, * false otherwise. * * The complexity of this function is O(suffix.length). * * ```ts * 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 * ``` */ export function endsWith(source: Uint8Array, suffix: Uint8Array): boolean { for ( let srci = source.length - 1, sfxi = suffix.length - 1; sfxi >= 0; srci--, sfxi-- ) { if (source[srci] !== suffix[sfxi]) return false; } return true; }