1.0.1 • Published 2 years ago

exchange-html v1.0.1

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

安装

npm install exchange-html

导入

const exchangehtml=require('exchange-html')

格式化时间

//调用 dateformat 对时间进行格式化
const exchange=require('./exchange-html/index')
//结果 2022-07-12 17:47:03
console.log(exchange.dateFormat(new Date()))

转义html中的特殊字符

//调用 转义html中的特殊字符
const exchange=require('./exchange-html/index')
//结果 <h1 title="abc">让我测试下看看</h1>>
console.log(exchange.htmlEscape('<h1 title="abc">让我测试下看看</h1>>'))

还原html中的特殊字符

//调用 还原html中的特殊字符
const exchange=require('./exchange-html/index')
//结果 <h1 title="abc">让我测试下看看</h1>>
console.log(exchange.htmlEscape('&lt;h1 title=&quot;abc&quot;&gt;让我测试下看看&lt;/h1&gt;&gt;'))
1.0.1

2 years ago

1.0.0

2 years ago