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
|
|
|
|
2024-04-29 02:57:30 +00:00
|
|
|
import { assert } from "@std/assert";
|
2022-11-29 06:01:21 +00:00
|
|
|
import { endsWith } from "./ends_with.ts";
|
|
|
|
|
2023-12-19 01:16:10 +00:00
|
|
|
Deno.test("endsWith()", () => {
|
2022-11-29 06:01:21 +00:00
|
|
|
const v = endsWith(new Uint8Array([0, 1, 2]), new Uint8Array([1, 2]));
|
|
|
|
const v2 = endsWith(new Uint8Array([0, 1, 2]), new Uint8Array([0, 1]));
|
|
|
|
const v3 = endsWith(new Uint8Array([0, 1, 2]), new Uint8Array([0, 1, 2, 3]));
|
|
|
|
assert(v);
|
|
|
|
assert(!v2);
|
|
|
|
assert(!v3);
|
|
|
|
});
|