1.0.0 • Published 4 years ago

itheima-tools-mariah v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

##安装

npm install itheima-tools-mariah

##导入

const itheima = require('./开发自己的包步骤/itheima-tools/index');

##格式化时间

//调用dateFormat 对时间进行格式化
const str = itheima.dateFormat(new Date())
// 结果 2020-09-19 16-50-16
console.log(str);

##转义HTML中的特殊字符

//待转换 字符串
const htmlStr = '<h1 class="rep">我是替换文本</h1>'
//调用htmlEscape()方法进行转换
const newHtmlStr = itheima.htmlEscape(htmlStr)
console.log(newHtmlStr);

##还原特殊字符

console.log(itheima.htmlUnEscape(newHtmlStr));

##协议

ISC