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