1.0.0 • Published 2 years ago

jared-tools v1.0.0

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

jared的工具箱

安装

npm install jared-tools

导入

const jaredTool=require('jared-tools');

##格式化时间

const newData=dateFormat(new Date());
console.log(newData);
// 2022-11-07 14:48:03

转译html特殊字符

const htmlStr=`<h1 title="abc">this is h1<span>123&nbsp;</span></h1>`;
const newStr=htmlEscape(htmlStr);
console.log(newStr);
//&lt;h1 title=&quot;abc&quot;&gt;this is h1&lt;span&gt;123&amp;nbsp;&lt;/span&gt;&lt;/h1&gt;

反转译html特殊字符

const unHtmlStr=`&lt;h1 title=&quot;abc&quot;&gt;this is h1&lt;span&gt;123&amp;nbsp;&lt;/span&gt;&lt;/h1&gt;`;
const unStr=htmlUnEscape(unHtmlStr);
console.log(unStr);
//<h1 title="abc">this is h1<span>123&nbsp;</span></h1>;