Skip to content

Instantly share code, notes, and snippets.

@diegorodriguesvieira
Created August 4, 2020 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegorodriguesvieira/8719649841ab40169ab5c5a0c879d690 to your computer and use it in GitHub Desktop.
Save diegorodriguesvieira/8719649841ab40169ab5c5a0c879d690 to your computer and use it in GitHub Desktop.
date.js
birth_date: Yup.string()
.required('Campo obrigatório')
.test('valid-date', 'Data inválida', (value) => {
return moment(value, 'DD/MM/YYYY', true).isValid();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment