UNPKG

studiocms

Version:

Astro Native CMS for AstroDB. Built from the ground up by the Astro community.

9 lines (6 loc) 269 B
import { DTConfig } from './dateWithTimeAndZone.js'; export function dateTimeListener(id: string) { const el = document.getElementById(id); if (!(el instanceof HTMLTimeElement)) return; el.textContent = new Date(el.dateTime).toLocaleString(undefined, DTConfig); }