1.0.1 • Published 3 years ago

itstuty-tools v1.0.1

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

安装

npm install itstudy-tools

导入

const itheima=require("itstudy-tools");

格式化时间

//调用格式化时间
const dateStr =itheima.dateFormat(new Date());
// 打印
console.log(dateStr)
// 结果 2022-10-16 21:47:00

转义html

const htmlstr='<h1>oo&o"o</h1>';
const htmlParse=itheima.htmlParse(htmlstr);
console.log(htmlParse)
// 输出:&lt;h1&gt;oo&amp;o&quot;o&lt;/h1&gt;

html字符串反转义

const strToHtml=itheima.strParseHtml(htmlParse);
console.log(strToHtml);
// 输出:<h1>oo&o"o</h1>

开源协议

ISC