Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/capi/deps/std/bytes.ts>endsWith

[WIP] A framework for crafting interactions with Substrate chains
Latest
function endsWith
import { endsWith } from "https://deno.land/x/capi@v0.1.1-beta.1/deps/std/bytes.ts";

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).

import { endsWith } from "https://deno.land/std@0.224.0/bytes/ends_with.ts";
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: Uint8Array
suffix: Uint8Array

Returns

boolean