1.0.1 • Published 2 years ago

binance-tools v1.0.1

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

//包的说明文档 //一般包含:安装方式、导入方式、格式化时间、转义HTML中的特殊字符、还原HTML中的特殊字符、开源协议

##安装

npm install Tools

##导入

const Tools = require('Tools')

##格式化时间

const dtStr = Tools.dateFormat(new Date())
console.log(dtStr)

##转义HTML特殊字符

const htmlStr = '<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>'
const htmlStr = Tools.htmlEscape(htmlStr)
console.log(dtStr)

##还原HTML特殊字符

const htmlStr2 = ''
const htmlStr2 = Tools.htmlEscape(htmlStr2)
console.log(dtStr2)//输出<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>

##开源协议 ISC