mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-21 23:44:35 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m9s
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
export function formatDate(dateString: string) {
|
|
return new Date(`${dateString}`).toLocaleDateString('en-IE', {
|
|
day: 'numeric',
|
|
month: 'long',
|
|
year: 'numeric',
|
|
timeZone: 'UTC'
|
|
})
|
|
}
|