zm-tool 中文文档教程
安装
npm install itheima-tools
导入
const itheima = require('zm-tools')
格式化时间
// 调用 dateFormat 对时间进行格式化
const dtStr = itheima.dateFormat(new Date())
// 结果 2020-04-03 17:20:58
console.log(dtStr)
转义 HTML 中的特殊字符
// 带转换的 HTML 字符串
const htmlStr = '<h1 title="abc">这是h1标签<span>123 </span></h1>'
// 调用 htmlEscape 方法进行转换
const str = itheima.htmlEscape(htmlStr)
// 转换的结果 <h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>
console.log(str)
还原 HTML 中的特殊字符
// 待还原的 HTML 字符串
const str2 = itheima.htmlUnEscape(str)
// 输出的结果 <h1 title="abc">这是h1标签<span>123 </span></h1>
console.log(str2)
开源协议
ISC
更多
你可能也喜欢
- @0xgabi/hardhat-aragon 中文文档教程
- @0y0/babel-preset-antd 中文文档教程
- @3test/ethereum-asset-ledger 中文文档教程
- @51npm/freedom-middleware-ossupload 中文文档教程
- @59naga/babel-plugin-transform-array-from 中文文档教程
- @7span/styles 中文文档教程
- @aacassandra/client-xlsx2json 中文文档教程
- @abdulghani/dynamodb-migrate 中文文档教程
- @ablanc/translator 中文文档教程
- @abnerh69/js-utils 中文文档教程