import * as L from "flurp/logic";const f = L.anyPass( N.isPositive, N.isEven, (x: number) => x % 3 === 0);f(1); // true;f(-5); // false;
Rest
Example