hexo/node_modules/hexo-util/lib/unescape_html.js

23 lines
445 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
'use strict';
const htmlEntityMap = {
'&': '&',
'&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;