Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [2.0.0](v1.13.0...v2.0.0) (2021-10-12) ### Bug Fixes * the function returned by unary does not need to be curried ([cf51ece](cf51ece)) ### chore * remove type checking. close [#17](#17) ([a03793f](a03793f)) ### Features * all checks the element of a list against a predicate. close [#24](#24) ([8f9bc01](8f9bc01)) ### BREAKING CHANGES * The function has been changed to accept only one predicate and a list of values instead of any number of parameters. Migration: v1: `all(isNum, isOdd)(1, 2, 3)` v2: `all(x => isNum(x) === true && isOdd(x) === true, [1, 2, 3])` * Type checking parameters is gone. See corresponding Architecture Decision Record (ADR).
- Loading branch information