This commit is contained in:
7
web/src/date.ts
Normal file
7
web/src/date.ts
Normal file
@ -0,0 +1,7 @@
|
||||
export function formatDate(date: Date): string {
|
||||
return date.toLocaleDateString(undefined, { // you can use undefined as first argument
|
||||
year: "numeric",
|
||||
month: "2-digit",
|
||||
day: "2-digit",
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user