UNPKG
lhy-tool
Version:
latest (1.0.0)
1.0.0
提供了格式化时间、HTMLEscape相关功能
lhy-tool
/
index.js
9 lines
(7 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// 定义转义HTML字符函数
const
dateFormat =
require
(
'./src/dateFormat'
)
const
htmlEscape =
require
(
'./src/htmlEscape'
)
module
.
exports
= { ...dateFormat, ...htmlEscape }