UNPKG

nuxt-arch

Version:

Arch is a Nuxt 3 template for creating your personal website less than a minute.

10 lines (8 loc) 231 B
export function formatDate(date: Date) { const options: Intl.DateTimeFormatOptions = { day: 'numeric', month: 'short', year: 'numeric', } return new Intl.DateTimeFormat('en-US', options).format(new Date(date)) }