1.0.0 • Published 1 year ago

ysy_moment v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

安装

npm i ysy_moment

导入

const ysy = require('ysy_moment')

格式化时间模块的使用

var str = ysy.formatDT(new Date())
console.log(str) //2023-01-29 11:20:33

转义html标签模块的使用

var str = '<h1 title="标题">标题&nbsp;</h1>'
var str_new = ysy.unHtmlStr(str)

console.log(str_new) 
//打印结果 &lt;h1 title=&quot;标题&quot;&rt;标题&amp;nbsp;&lt;h1/&rt;

还原为html标签模块的使用

var str = '&lt;h1 title=&quot;标题&quot;&rt;标题&amp;nbsp;&lt;h1/&rt;'
var res = ysy.htmlStr(str)
console.log(res)
//结果 <h1 title="标题">标题&nbsp;<h1/>

许可证

ISC
1.0.0

1 year ago