json-theme-even-fork/components/date.js

13 lines
298 B
JavaScript

import html from '../utils/html.js'
const formatDate = dateString =>
new Date(dateString).toLocaleDateString('en', {
month: 'short',
year: 'numeric',
timeZone: 'UTC',
})
export default function Duration(date) {
return html`<time datetime="${date}">${formatDate(date)}</time>`
}