Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
fix: result can now also be equl to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
vycdev committed Jul 20, 2020
1 parent beaf248 commit 6c3c8af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export default (
) => {
return typesafeKeys(base)
.map(l => [base[l], head[l]])
.every(l => l[1] > l[0]);
.every(l => l[1] >= l[0]);
};

0 comments on commit 6c3c8af

Please sign in to comment.