1.0.0 • Published 5 years ago

yxb-tools v1.0.0

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

安装

npm install yxb-tools

导入

const yxb = require('yxb-tools/index')

格式化时间的方法

const dtStr = yxb.dateFormat(new Date())
console.log(dtStr);

转译HTML字符串

const str = '<h1 title="aaa">这是h1标签<span>hello</span></h1>'
const htmlStr = yxb.htmlEscape(str)
console.log(htmlStr); 
 //  &lt;h1 title=&quot;aaa&quot;&gt;这是h1标签&lt;span&gt;hello&lt;/span&gt;&lt;/h1&gt;

还原HTML字符串

const htmlUnStr = yxb.htmlUnEscape(htmlStr)
console.log(htmlUnStr);
 //  <h1 title="aaa">这是h1标签<span>hello</span></h1>

开源许可协议

ISC

1.0.0

5 years ago