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