2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-11-29 06:01:21 +00:00
|
|
|
// 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
|
2022-12-01 04:55:43 +00:00
|
|
|
* import { endsWith } from "https://deno.land/std@$STD_VERSION/bytes/ends_with.ts";
|
2022-11-29 06:01:21 +00:00
|
|
|
* 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;
|
|
|
|
}
|