1.1.0 • Published 2 years ago
chyco v1.1.0
chyco
安装
npm install chyco
使用
const chyco = require('chyco')
字符串相关方法
escapeHtml 将 html 字符串转义
const htmlString = '<h1>Welcome to my website!</h1>'
const escapedHtml = chyco.str.escapeHtml(htmlString)
unescapeHtml 将转义后的 html 字符串还原
const escapedString = '<h1>Welcome to my website!</h1>'
const unescapedString = chyco.str.unescapeHtml(escapedString)