Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at a876aae44ea07494ebea9727350aa060b81f317b 11 lines 287 B view raw
1export function niceDate(date: number | string | Date) { 2 const d = new Date(date) 3 return `${d.toLocaleTimeString(undefined, { 4 hour: 'numeric', 5 minute: '2-digit', 6 })} 路 ${d.toLocaleDateString('en-us', { 7 year: 'numeric', 8 month: 'short', 9 day: 'numeric', 10 })}` 11}