1.0.0 • Published 2 years ago
itheima-tools-chenyuanyuan v1.0.0
安裝
npm install itheima-tools
導入
const itheima = require('itheima-tools');
格式化時間
// 調用 dateFormat 對時間進行格式化
const dt = itheima.dateFormat(new Date());
// 2022-10-18 15:40:04
console.log(dt);
轉義 HTML 中的特殊字符
// 調用 htmlEscape 對HTML字符串進行轉義
const htmlStr = itheima.htmlEscape('<h1 title="abc">hello motor<span>123 </span></h1>');
// 轉換結果:<h1 title="abc">hello motor<span>123&nbsp;</span></h1>
console.log(htmlStr);
還原HTML的字符轉義
// 調用 htmlUnEscape 還原HTML的字符轉義
const rawStr = itheima.htmlUnEscape(htmlStr);
// 還原結果:<h1 title="abc">hello motor<span>123 </span></h1>
console.log(rawStr);
開源協議
ISC
1.0.0
2 years ago