UNPKG
itheima-tools-zhangsan
Version:
latest (1.0.0)
1.0.0
提供了格式化时间、HTMLEscape相关功能
itheima-tools-zhangsan
/
test.js
13 lines
(7 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
itheima =
require
(
'./index'
);
const
dtStr = itheima.
dateFormat
(
new
Date
())
console
.
log
(dtStr);
const
htmlStr =
'<h1 title="abc">这是h1标签<span>123 </span></h1>'
;
const
str = itheima.
htmlEscape
(htmlStr)
console
.
log
(htmlStr);
console
.
log
(str);