summaryrefslogtreecommitdiff
path: root/static/js/components/formatDate.js
blob: a12f04f6721eb045d34922ec9938f8adbedf8cc9 (plain)
1
2
3
4
5
6
7
const timeElements = document.querySelectorAll(".time");
timeElements.forEach((timeElement) => {
  const dateStr = timeElement.textContent.split(" ").slice(0, 3).join(" ");
  const date = new Date(dateStr);

  timeElement.textContent = date.toLocaleString();
});