Skip to main content
Module

x/fae/dropLastWhile.ts

A functional module for Deno inspired from Ramda.
Latest
import * as fae from "https://deno.land/x/fae@v1.1.1/dropLastWhile.ts";

Variables

Returns a new list excluding the trailing elements of a list which satisfies predicate. Skips all the elements which on applied on predicate returns true. The new list ends with last false.