This repository has been archived on 2025-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
Files
porom/js/date-fmt.js

11 lines
376 B
JavaScript

document.addEventListener("DOMContentLoaded", () => {
const timestampSpans = document.getElementsByClassName("timestamp");
for (let timestampSpan of timestampSpans) {
const timestamp = parseInt(timestampSpan.dataset.utc);
if (!isNaN(timestamp)) {
const date = new Date(timestamp * 1000);
timestampSpan.textContent = date.toLocaleString();
}
}
})