busypeoples
busypeoples
Hi! Thanks for the feedback! Will look into this, either today or tomorrow.
@davidchase I will finally have the time to look into the this, this week!
Here's a possible way to tackle the problem. But we probably will need something better than this in the long run. ``` // predicates const notEmpty = compose(not, isEmpty); const...
Thanks for the great input @boyko I think this is very similar to https://github.com/25th-floor/spected/issues/100 from @davidchase Which would also solve the problem mentioned in above issue more elegantly. I will...
Didn't have the time to run this. Will try to check it out today or tomorrow and then merge.
Thanks @benneq and @boyko for all the input! Let's think about the possible ways to tackle this.
Hi! Checkout the example from the revalidation library, which uses spected to validate inputs. https://github.com/25th-floor/revalidation/blob/master/example/validationRules.js#L11 The example shows how to check if two fields are equal. Let me know you,...
Yes, that's a good point. Will update the documentation. Thanks for the valuable input!
Should work without too much work!
The `isValid` has to be implemented in user land, as spected can't know how your data structure looks like. i.e. A successful data structure might look like the following: ```js...