UNPKG
itheima-tools-legend
Version:
latest (1.0.0)
1.0.0
提供了格式化时间、HTMLEscape相关功能
itheima-tools-legend
/
index.js
11 lines
(8 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
//这是包的入口文件
const
date =
require
(
'./src/dateFormat'
);
const
escape
=
require
(
'./src/htmlEscape'
);
//向外暴露需要的成员
module
.
exports
= { ...date,
//采用ES6展开运算符,将对象中所有成员进行暴露
...
escape
};