UNPKG

feel-tools

Version:

提供了格式化时间,HTMLEscape,HTMLUnEscape等工具

21 lines (16 loc) 479 B
function dateFormat(dataStr) { const dt = new Date(dataStr); const y = padZero(dt.getFullYear()); const m = padZero(dt.getMonth() + 1); const d = padZero(dt.getDate()); const hh = padZero(dt.getHours()); const mm = padZero(dt.getMinutes()); const ss = padZero(dt.getSeconds()); return `${y}-${m}-${d} ${hh}:${mm}:${ss}`; } function padZero(num) { return num > 9 ? num : '0' + num; } module.exports = { dateFormat }