UNPKG

hexo-util

Version:

Utilities for Hexo.

19 lines 511 B
"use strict"; const htmlEntityMap = { '&amp;': '&', '&lt;': '<', '&gt;': '>', '&quot;': '"', '&#39;': '\'', '&#96;': '`', '&#x2F;': '/', '&#x3D;': '=' }; const regexHtml = new RegExp(Object.keys(htmlEntityMap).join('|'), 'g'); const unescapeHTML = (str) => { if (typeof str !== 'string') throw new TypeError('str must be a string!'); return str.replace(regexHtml, a => htmlEntityMap[a]); }; module.exports = unescapeHTML; //# sourceMappingURL=unescape_html.js.map