Implement.js
Implement.js copied to clipboard
Add `exact` and `enum` types
Need to add a way of checking for specific values, including enumerations
Something like:
propA: type('enum', ['A', 2, 'C']),
propB: type('exact', 'someSpecificValue');