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
/
effects.js
9 lines
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
const
setField
= (
field, value
) => { field.
value
= value; field.
isPristine
=
false
; };
export
const
resetField
= (
field, value =
''
) => { field.
value
= value; field.
isPristine
=
true
; };
//# sourceMappingURL=effects.js.map