bertho-zero/react-redux-universal-hot-example

Add email verification?

Closed this issue · 1 comments

Add email verification?

export function email(value) {
// Let's not start a debate on email regex. This is just for an example app!
if (!isEmpty(value) && !/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i.test(value)) {
return 'Invalid email address';
}
}

You can use https://www.npmjs.com/package/isemail in this function.