UNPKG
itheima-tools-zm
Version:
latest (1.0.2)
1.0.2
1.0.1
提供了格式化时间、HTMLEscape相关功能
itheima-tools-zm
/
index.js
10 lines
(8 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
// 这是包的入口文件
const
date =
require
(
'./src/dateFormat'
)
const
html =
require
(
'./src/htmlEscape'
)
// 向外暴露需要的成员
module
.
exports
= { ...date, ...html }