yzy-tools
v1.0.0
Published
提供了格式化时间,HTMLEscape的功能
Downloads
2
Readme
安装
npm install yzy-tools
导入
const yzy = require('yzy-tools');
格式化时间
//调用 dateFomat 方法对时间进行格式化
const yzy = require('./yangzhenyu')
const time = yzy.dataFormat(new Date())
// 结果 2020-04-03 17:20:58
转义HTML中的特殊字符
//调用 htmlEscape 方法对字符进行转化
const htmlStr = '<h1 title="abc">这是h1标签<span>123 </span></h1>'
let hs = yzy.htmlEscape(htmlStr);
console.log(hs);
还原HTML中的特殊字符
//调用 htmlUnEscape 方法还原
// let hs2 = yzy.htmlUnEscape('<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>');
let hs2 = yzy.htmlUnEscape(hs);
console.log(hs2);
开源协议
ISC