import { takeLastWhile } from "https://dotland.deno.dev/std@0.116.0/collections/mod.ts";
Returns all elements in the given array after the last element that does not match the given predicate.
Example:
import { takeLastWhile } from "https://deno.land/std@0.116.0/collections/mod.ts";
import { assertEquals } from "https://deno.land/std@0.116.0/testing/asserts.ts";
const arr = [1, 2, 3, 4, 5, 6];
assertEquals(
takeLastWhile(arr, (i) => i > 4),
[5, 6],
);