上传文件至 '新闻小程序/utils'

This commit is contained in:
link_1999 2022-04-04 21:48:32 +08:00
parent 499f24d8f8
commit aa845ab445
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
const formatTime = date => {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const minute = date.getMinutes()
const second = date.getSeconds()
return `${[year, month, day].map(formatNumber).join('/')} ${[hour, minute, second].map(formatNumber).join(':')}`
}
const formatNumber = n => {
n = n.toString()
return n[1] ? n : `0${n}`
}
module.exports = {
formatTime
}