UNPKG
overmind-forms
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Forms implementation for overmind
github.com/garth/overmind-forms
garth/overmind-forms
overmind-forms
/
es
/
isFormValid.js
2 lines
•
204 B
JavaScript
View Raw
1
2
export
const
isFormValid
= form => !
Object
.
keys
(form).
find
(
fieldName
=>
fieldName !==
'isValid'
&&
typeof
form[fieldName] ===
'object'
&& !form[fieldName].
isValid
);
//# sourceMappingURL=isFormValid.js.map