vue-20240410

1.0.0 • Public • Published

介绍

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

安装

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

Package Sidebar

Install

npm i vue-20240410

Weekly Downloads

2

Version

1.0.0

License

ISC

Unpacked Size

5.2 kB

Total Files

10

Last publish

Collaborators

  • ztlyx