1.0.0 • Published 2 years ago

itliyifei_tools v1.0.0

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

安装

npm install itliyifei_tools

导入

const itliyifei = require('itliyifei_tools')

格式化时间

const dtStr = itliyifei.dataFormat(new Date())
// 结果 2023-03-16 18:48:11
console.log(dtStr)

转义 HTML 中的特殊字符

// 带转换的 html 字符串
const htmlStr =
  '<h1 title="love">我喜欢你<span>Liu&nbsp;Su&nbsp;Jing</span></h1>'
// 调用 htmlEscape 方法进行转换
const str = itliyifei.htmlEscape(htmlStr)
// &lt;h1 title="love">我喜欢你&lt;span>Liu&amp;nbsp;Su&amp;nbsp;Jing&lt;/span>&lt;/h1>
console.log(str)

还原 HTML 中的特殊字符

// 待还原的 HTML 字符串
const Str =
  '&lt;h1 title="love">我喜欢你&lt;span>Liu&amp;nbsp;Su&amp;nbsp;Jing&lt;/span>&lt;/h1>'
const htmlX = itliyifei.htmlUnEscape(Str)
// <h1 title="love">我喜欢你<span>Liu&nbsp;Su&nbsp;Jing</span></h1>
console.log(htmlX)

开源协议

ISC