1.0.0 • Published 5 years ago

theima v1.0.0

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

安装

npm i itheima

导入

const itheima = require('./itheima-yimiao/index')

格式化时间

// 调用时间格式化的函数
const dtStr = itheima.dateFormat(new Date())
// 结果为2020-10-21 14:55:10
console.log(dtStr);

转义html特殊字符

// html转义的函数
const htmlStr = '<h1 title="abc">我是h1标签</h1>'
const str = itheima.htmlEscape(htmlStr)
// 结果为
console.log(str);

还原html特殊字符

// html还原转义的函数
const str2 = itheima.unEscape(str)
console.log(str2);

协议

ISC

1.0.0

5 years ago