UNPKG

tyro-util

Version:
18 lines (16 loc) 403 B
/** * @desc html decode(防止xss) * @return {String} */ const htmlDecodeByRegExp = str => { var s = '' if (str.length == 0) return '' s = str.replace(/&amp;/g, '&') s = s.replace(/&lt;/g, '<') s = s.replace(/&gt;/g, '>') s = s.replace(/&nbsp;/g, ' ') s = s.replace(/&#39;/g, "'") s = s.replace(/&quot;/g, '"') return s } module.exports = htmlDecodeByRegExp