@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
24 lines • 781 B
TypeScript
/**
* 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)`.
*
* @param source Source array to check.
* @param suffix Suffix array to check for.
* @returns `true` if the suffix array appears at the end of the source array,
* `false` otherwise.
*
* @example Basic usage
* ```ts
* import { endsWith } from "@std/bytes/ends-with";
* import { assertEquals } from "@std/assert";
*
* const source = new Uint8Array([0, 1, 2, 1, 2, 1, 2, 3]);
* const suffix = new Uint8Array([1, 2, 3]);
*
* assertEquals(endsWith(source, suffix), true);
* ```
*/
export declare function endsWith(source: Uint8Array, suffix: Uint8Array): boolean;
//# sourceMappingURL=ends_with.d.ts.map