Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Created December 15, 2022 22:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codigoconjuan/01b6b6fe6135b9d067d8f09d3bb326a5 to your computer and use it in GitHub Desktop.
Save codigoconjuan/01b6b6fe6135b9d067d8f09d3bb326a5 to your computer and use it in GitHub Desktop.
Helper para fecha
export const formatearFecha = fecha => {
const opciones = {
year: 'numeric',
month: 'long',
day: '2-digit'
}
return new Date(fecha).toLocaleDateString('es-ES', opciones)
}
@Nico235711
Copy link

gracias

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment