whatsapp 群组消息监控/ 群组功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
750 B

7 months ago
  1. /**
  2. *
  3. * 时间戳转化 datetime格式
  4. **/
  5. function timestampToTime(timestamp) {
  6. var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
  7. var Y = date.getFullYear() + '-';
  8. var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1):date.getMonth()+1) + '-';
  9. var D = (date.getDate()< 10 ? '0'+date.getDate():date.getDate())+ ' ';
  10. var h = (date.getHours() < 10 ? '0'+date.getHours():date.getHours())+ ':';
  11. var m = (date.getMinutes() < 10 ? '0'+date.getMinutes():date.getMinutes()) + ':';
  12. var s = date.getSeconds() < 10 ? '0'+date.getSeconds():date.getSeconds();
  13. return Y+M+D+h+m+s;
  14. }
  15. // console.log(timestampToTime(1711016965));
  16. module.exports = {
  17. timestampToTime
  18. }