# tool **Repository Path**: desingerxu/tool ## Basic Information - **Project Name**: tool - **Description**: 自建包 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-09 - **Last Updated**: 2021-11-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tool ### 导入包 ```js const item = require('./tools/index') ``` ### 格式化时间 ```js const dt = item.dateFormat(new Date()) ``` ### 转义html ```js const str1 = '

这是H1标签123 

' const str2 = item.htmlEscape(str1) ``` ### 将字符串转义成html ```js const str3 = '<h1 title="abc">这是H1标签<span>123&nbsp;</span></h1>' const str4 = item.htmlUnEscape(str3) ```