import { splitWhen } from "https://deno.land/x/rambda@9.4.1/rambda.js";
It splits list
to two arrays according to a predicate
function.
The first array contains all members of list
before predicate
returns true
.
import { splitWhen } from "https://deno.land/x/rambda@9.4.1/rambda.js";
It splits list
to two arrays according to a predicate
function.
The first array contains all members of list
before predicate
returns true
.