1.0.1 • Published 1 year ago

itheima-tools-zhishui v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

包的说明文档 itheima-tools-zhishui

安装

npm install itheima-tools-zhishui

导入

const itheima = require('itheima-tools-zhishui')

格式化时间

//调用dateFormat()对时间进行格式化
const dtStr = itheima.dateFormat(new Date())
console.log(dtStr) //结果 2022-12-01 16:58:08

转义HTML中的特殊字符

//待转义的特殊字符串
const htmlStr = '<h1>HTML标签</h1>'
//调用htmlEscape() 转换
const str = itheima.htmlEscape(htmlStr)
console.log(str); //结果 &lth1&gtHTML标签&lt/h1&gt

还原HTML中的特殊字符

//待还原的特殊字符串
const str2 = itheima.htmlUnEscape(str)
console.log(str2);//结果 <h1>HTML标签</h1>

开源协议

ISC