validation.js 249 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import t from "tcomb-form-native"; export default (formValidation = { email: t.refinement (t.String, value =>{ return /@/.test(value); }), password: t.refinement (t.String, (value) =>{ return value.length >=6; }) });