memorium/lib/string.ts

5 lines
195 B
TypeScript
Raw Normal View History

export function formatDate(date: Date): string {
const options = { year: "numeric", month: "long", day: "numeric" } as const;
return new Intl.DateTimeFormat("en-US", options).format(date);
}