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