Skip to main content
Go to Latest
function takeLastWhile
import { takeLastWhile } from "https://deno.land/std@0.165.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.165.0/collections/take_last_while.ts";
import { assertEquals } from "https://deno.land/std@0.165.0/testing/asserts.ts";

const arr = [1, 2, 3, 4, 5, 6];

assertEquals(
  takeLastWhile(arr, (i) => i > 4),
  [5, 6],
);

Parameters

array: readonly T[]
predicate: (el: T) => boolean