Skip to main content
Module

x/ramda/mod.ts>splitWhen

:ram: Practical functional Javascript
Latest
variable splitWhen
import { splitWhen } from "https://deno.land/x/ramda@v0.27.2/mod.ts";

Takes a list and a predicate and returns a pair of lists with the following properties:

  • the result of concatenating the two output lists is equivalent to the input list;
  • none of the elements of the first output list satisfies the predicate; and
  • if the second output list is non-empty, its first element satisfies the predicate.