mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-16 01:31:09 +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);
|
|
};
|