Files
Webserver/lib/format.ts

11 lines
239 B
TypeScript
Raw Normal View History

2026-05-25 09:49:40 -04:00
const postDateFormatter = new Intl.DateTimeFormat('en-US', {
month: 'long',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
});
export function formatPostDate(date: string) {
return postDateFormatter.format(new Date(date));
}