Function bodies 201 total
formatDate function · typescript · L42-L48 (7 LOC)src/utils/format.ts
export function formatDate(date: Date | string, locale = "en-US"): string {
return new Intl.DateTimeFormat(locale, {
year: "numeric",
month: "short",
day: "numeric",
}).format(new Date(date));
}‹ prevpage 5 / 5