Skip to main content
Module

x/ramda/mod.ts>allPass

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

Takes a list of predicates and returns a predicate that returns true for a given list of arguments if every one of the provided predicates is satisfied by those arguments.

The function returned is a curried function whose arity matches that of the highest-arity predicate.