1.1.0 • Published 2 years ago

it-tools-cuijb v1.1.0

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

安装

npm install it-tools-cuijb

导入

const itTools  = require(it-tools-cuijb)

格式化时间

// 调用dataFormat 对时间格式化 
const dtStr = itTools.dataFormat(new Date())
console.log(dtStr)

转义 HTML中的特殊字符

// 待转换的HTML 字符串
const str = '<h1>你是"张三"吗</h1>'
// 调用 htmlEscape 方法进行转换
const newStr = itheima.htmlEscape(str)
// 转换的结果 &lt;h1&gt;你是&quot;张三&quot;吗&lt;/h1&gt;
console.log(newStr);

还原 HTML中的特殊字符

// 待还原的 HTML 字符串
const str1 = "&lt;h1&gt;你是&quot;张三&quot;吗&lt;/h1&gt;"
// 调用 htmlUnEscape 方法进行转换
const newStr1 = itheima.htmlUnEscape(str1)
// 输出的结果 <h1>你是"张三"吗</h1>
console.log(newStr1);

开源协议

ISC

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago