deno.land / x / rambda@v9.1.1 / src / anyPass.js
1234567891011121314export function anyPass(predicates){ return (...input) => { let counter = 0 while (counter < predicates.length){ if (predicates[ counter ](...input)){ return true } counter++ }
return false }}
Version Info