UNPKG
itheima-jia-tools
Version:
latest (1.0.0)
1.0.0
日期格式化,字符串转义,佳佳出品必是经典
itheima-jia-tools
/
index.js
11 lines
(8 loc)
•
199 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, ...
escape
}