8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
|
export function renderDate(date: Date): string {
|
||
|
return date.toLocaleDateString(undefined, {
|
||
|
year: "numeric",
|
||
|
month: "2-digit",
|
||
|
day: "2-digit",
|
||
|
});
|
||
|
}
|