1.0.0 • Published 3 years ago

chinasoft-tools v1.0.0

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

安装

npm install chinasoft-tools

导入

const itheima = require('chinasoft-tools')

功能1:格式化日期

const dt = itheima.dateFormat(new Date());
console.log(dt);

功能2:转义 Html 中的特殊字符

const htmlStr = '<h1 style="color:red;">你好!&copy;<span>小黄!</span></h1>'
const str = itheima.htmlEscape(htmlStr)
console.log(str);

功能3:还原 html 中的特殊字符

const rawHTML = itheima.htmlUnEscape(str)
console.log(rawHTML);

开源协议

ISC