1.0.0 • Published 2 years ago

itcomt-tools v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

安装

npm install itcomt-tools

导入

const itcomt = require('itcomt-tools')

格式化时间

//调用dateFormat对时间格式化
const dtStr = itcomt.dateFormat(new Date())
//结果 2022-02-03 12:35:06
console.log(dtStr);

转义HTML中的特殊字符

//带转换的HTML字符串
const htmlStr = '<h1>我是h1标签的内容&nbsp;</h1>'
//调用HTMLEscape方法进行转换
const result = itcomt.htmlEscape(htmlStr)
//结果 &lt;h1&gt;我是h1标签的内容&amp;nbsp;&lt;/h1&gt;
console.log(result);

还原HTML中的特殊字符

//带转换的HTML字符串
const htmlStr = '<h1>我是h1标签的内容&nbsp;</h1>'
//调用HTMLUnEscape方法进行转换
const result = itcomt.htmlUnEscape(htmlStr)
//结果 <h1>我是h1标签的内容&nbsp;</h1>
console.log(result);

开源协议

ISC