1.0.0 • Published 5 years ago

stt-tools v1.0.0

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

安装

npm install stt-tools

导入

const stt=require('stt-tools')

格式化时间

// 调用dateFormat 对时间进行格式化
const newDate=stt.dateFormat(new Date())
console.log(newDate);

转译HTML中的特殊字符

// 待转化的html字符串
const htmlStr='<h1 title="abc">这是h1标签</h1>'
// 调用HTMLEscape 进行转换
const str =stt.HTMLEscape(htmlStr)
输出转换结果
console.log(str);

还原HTML字符串

// 待还原的html字符串
const newStr=stt.htmlUnEscape(str)
输出还原的结果
console.log(newStr);;

开源协议

ISC

1.0.0

5 years ago