UNPKG
node1-tools
Version:
latest (1.0.0)
1.0.0
提供了格式化时间,HTMLEscape的功能
node1-tools
/
index.js
9 lines
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// 包的入口文件
const
dateFormat =
require
(
'./src/dateFormat'
)
const
htmlEscape =
require
(
'./src/htmlEscape'
)
// 向外暴露需要的成员
module
.
exports
= {
// ...对象:表示展开运算符,即展开对象里面的所有属性
...dateFormat, ...htmlEscape }