import { anyPass } from "https://deno.land/x/rambda@9.4.1/mod.ts";
It accepts list of predicates
and returns a function. This function with its input
will return true
, if any of predicates
returns true
for this input
.
Parameters
predicates: ((x: T) => boolean)[]
Parameters
predicates: ((...inputs: T[]) => boolean)[]