1.0.0 • Published 3 years ago

xiaochaochao-tools v1.0.0

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

说明文档

##安装

npm install long-tools

##导入

 const index = require("./index");

##格式化时间

const datastr = index.dateFormat(new Date());
console.log(datastr);

##转义 html 的字符

//转义
const htmlstr = "<h1 title='abc'>这是h1标签<span>123&nbsp;</span></h1>";
const a = index.htmlEscape(htmlstr);

//还原
const b = index.htmlUnEscape(a);
console.log(b);

##开源协议 ISC