Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

New Checker: greaterThan, lessThan #20

Closed
kentcdodds opened this issue May 7, 2015 · 1 comment
Closed

New Checker: greaterThan, lessThan #20

kentcdodds opened this issue May 7, 2015 · 1 comment

Comments

@kentcdodds
Copy link
Owner

This would compliment the range checker.

var checker = apiCheck.greaterThan(2);
checker(4); // <-- passes
checker(1); // <-- fails
var checker = apiCheck.lessThan(6);
checker(4); // <-- passes
checker(10); // <-- fails
@AimeeKnight
Copy link
Contributor

Going to go ahead and start with this.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants