Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1
  1. const formatTime=t=>{const e=t.getFullYear(),o=t.getMonth()+1,r=t.getDate(),m=t.getHours(),a=t.getMinutes(),n=t.getSeconds();return[e,o,r].map(formatNumber).join("/")+" "+[m,a,n].map(formatNumber).join(":")},formatNumber=t=>(t=t.toString())[1]?t:"0"+t,formatDate=t=>{const e=t.getFullYear(),o=t.getMonth()+1,r=t.getDate(),m=t.getHours(),a=t.getMinutes(),n=t.getSeconds();return[e,o,r].map(formatNumber).join("")+" "+[m,a,n].map(formatNumber).join("")};module.exports={formatTime:formatTime,formatDate:formatDate};