1.0.0 • Published 5 years ago

itheima-tools-a v1.0.0

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

安装

npm install itheima-tools1.0.0

导入

const itheima = require('itheima-tools-a')

格式化时间

//调用dateFormat格式化时间

const dtStr = itheima.dateFormat(new Date())

console.log(dtStr);

// 结果 2020-10-19 23:18:54

带转换的 html 特殊字符

// 调用htmlEscape将html转义

const str =itheima.htmlEscape('<h1 id="h1">你好,中国<span>4455&nbsp;</span></h1>')

console.log(str)

// 结果 &lt;h1 id=&quot;h1&quot;&gt;你好,中国&lt;span&gt;4455&amp;nbsp;&lt;/span&gt;&lt;/h1&gt;

还原 html 字符

const str ='&lt;h1 id=&quot;h1&quot;&gt;你好,中国&lt;span&gt;4455&amp;nbsp;&lt;/span&gt;&lt;/h1&gt;'

const htmlStr = itheima.htmlUnEscape(str)

console.log(htmlStr);

// 结果<h1 id="h1">你好,中国<span>4455&nbsp;</span></h1>

开源协议

ISC

1.0.0

5 years ago