mirror of
https://github.com/docmost/docmost.git
synced 2025-11-10 06:12:05 +10:00
7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
export const formatDate = (date: Date) => {
|
|
new Intl.DateTimeFormat("en", {
|
|
dateStyle: "medium",
|
|
timeStyle: "medium",
|
|
}).format(date);
|
|
};
|