1.0.2 • Published 2 years ago

deltatools v1.0.2

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

安装

npm install deltatools

导入

const tools = require('deltatools');

格式化时间

const str = tools.dateFormat(new Date(),'/');
console.log(str);// 2022/03/27 23:07:01

转义HTML特殊字符

const htmlStr = '<html>123</html>';
const result = tools.htmlEscape(htmlStr);
console.log(result); // &lt;html&gt;123&lt;/html&gt;

还原HTML特殊字符

const htmlStr = '&lt;html&gt;123&lt;/html&gt;';
const result = tools.htmlEscape(htmlStr);
console.log(result); // <html>123</html>

开源协议

ISC

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago