Atproto AMA app
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 7 lines 202 B view raw
1export function formatWhen(d: Date | string) { 2 const date = typeof d === "string" ? new Date(d) : d; 3 return date.toLocaleString(undefined, { 4 dateStyle: "medium", 5 timeStyle: "short", 6 }); 7}