xinyahuang-tools
v1.0.0
Published
提供了格式化时间,htmlEscape等方法
Downloads
17
Maintainers
Readme
安装
npm i xinyahuang-tools
导入
const tools = require("xinyahuang-tools");
格式化时间
const time = tools.timeFormat(new Date().getTime());
console.log(time);
转义 Html 中特殊字符
const str = tools.htmlEscape("<h1>hello</h1>");
console.log(str);
还原 Html 中特殊字符
const str = tools.htmlUnescape(str1);
console.log(str);
开源协议
ISC