1 Star 0 Fork 63

張然/ZYQA

forked from 常伟/ZYQA 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
template.js 463 Bytes
一键复制 编辑 原始数据 按行查看 历史
ChangWei 提交于 2016-09-09 16:25 . 基本代码
const template = require('art-template')
template.config('cache', false)
template.helper('formatTime', function (t) {
t = new Date(t)
var M = t.getMonth() + 1,
d = t.getDate(),
h = t.getHours(),
m = t.getMinutes()
M = M < 10 ? '0' + M : M
d = d < 10 ? '0' + d : d
h = h < 10 ? '0' + h : h
m = m < 10 ? '0' + m : m
return t.getFullYear() + '-' + M + '-' + d + ' ' + h + ':' + m
})
module.exports = template
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hnxcylmlnz/ZYQA.git
git@gitee.com:hnxcylmlnz/ZYQA.git
hnxcylmlnz
ZYQA
ZYQA
master

搜索帮助