mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
4c573b9bc2
* Nest email module with smtp, postmark and console log drivers * react-email package
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);
|
|
};
|