1.0.0 • Published 27 days ago

vue-20240410 v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
27 days ago

介绍

这是一个工具包,可以格式化时间,可以转换网页字符串,也可以解析网页字符串...

安装

npm i vue20240410
const utils = require('./index')

格式化日期

const now = new Date()
const str = utils.dateFormat(now)
console.log(str);

转换网页字符串

const html = '<h1 title="标题">这是h1标题 &nbsp;</h1>'
const str1 = utils.htmlEscape(html)
console.log(str1);
// &lt;h1 title=&quot;标题&quot;&gt;这是h1标题 &amp;nbsp;&lt;/h1&gt;

const str2 = '&lt;h1 title=&quot;标题&quot;&gt;这是h1标题 &amp;nbsp;&lt;/h1&gt;'
const html2 =utils.htmlUnEscape(str2)
console.log(html2);

开源协议

ISC

1.0.0

27 days ago