blog.hangerthem.com/utils/time.ts
2026-08-02 22:39:12 +02:00

8 lines
194 B
TypeScript

/**
* Utility function to format a date into a human-readable string.
*/
export const dateFormatter = new Intl.DateTimeFormat('en', {
day: 'numeric',
month: 'long',
year: 'numeric',
});