mirror of https://github.com/jkjoy/sunpeiwen.git
23 lines
467 B
JavaScript
23 lines
467 B
JavaScript
'use strict';
|
|
|
|
const htmlEntityMap = {
|
|
'&': '&',
|
|
'<': '<',
|
|
'>': '>',
|
|
'"': '"',
|
|
''': '\'',
|
|
'`': '`',
|
|
'/': '/',
|
|
'=': '='
|
|
};
|
|
|
|
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;
|