binbin-tools
v1.0.0
Published
提供格式化时间,HTMLEscape等功能
Downloads
2
Readme
安装
npm i binbin-tools
导入
const binbin = require('binbin-tools')
格式化时间
// 调用dateFormat 对时间进行格式化
console.log(date.dateFormat(new Date));
// 2024-10-06 21:53:19
转义HTML字符
// 调用htmlEscape 对HTML进行转义
console.log(date.htmlEscape('<h1><h1/>'))
// <h1><h1/>
还原转义的HTML字符
// 调用unEscape 对HTML进行还原
console.log(date.unEscape('<h1><h1/>'));
// <h1><h1/>
开源协议
ISC