Files
Webserver/lib/format.ts
Akshay Kolli 014b1836c0
Some checks failed
Deploy Website / build-and-deploy (push) Has been cancelled
Codex fixes
2026-05-25 09:49:40 -04:00

11 lines
239 B
TypeScript

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));
}