util.js 554 字节
function timestampToTime(timestamp,type) {
  var date = new Date(timestamp * 1000); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
  var Y = date.getFullYear() + '.';
  var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '.';
  var D = date.getDate() + ' ';
  var h = date.getHours() + ':';
  var m = date.getMinutes() + '0:';
  var s = date.getSeconds()+'0';
if(type==1){
  return Y + M + D + h + m + s; 
}
 else{
  return h + m + s; 
 }
}

module.exports = {
  timestampToTime: timestampToTime
}