12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
export function formatDate(date: Date): string {
|
|
return new Intl.DateTimeFormat('es-ES', {
|
|
day: '2-digit',
|
|
month: '2-digit',
|
|
year: 'numeric',
|
|
hour: '2-digit',
|
|
minute: '2-digit'
|
|
}).format(date);
|
|
}
|
|
|
|
|