1.0.1 • Published 3 years ago
itlight-tools v1.0.1
安装
npm install itlight-tools
导入
const itlight = require('itlight-tools')
格式化时间
<!-- 调用dateFormat 对时间进行格式化 -->
const itlight = require('../itlight-tools')
<!-- 结果 2022-04-08 16:26:56 -->
const dtStr = itlight.dateFormat(new Date())
## 转义 HTML 中的特殊字符
<!-- 待转换的HTML字符串 -->
const htmlStr = '<h1 title="abc">这是 h1 标签<span>123123 </span></h1>'
<!-- 调用htmlEscape方法进行转换 -->
const str = itlight.htmlEscape(htmlStr)
## 还原 HTML 中的特殊字符
<!-- 待还原的HTML字符串 -->
const str2 = itlight.htmlUnEscape(str)
开源协议
ISC