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