1 /** Used to map HTML entities to characters. */
12 * Used by `_.unescape` to convert HTML entities to characters.
15 * @param {string} chr The matched character to unescape.
16 * @returns {string} Returns the unescaped character.
18 function unescapeHtmlChar(chr) {
19 return htmlUnescapes[chr];
22 module.exports = unescapeHtmlChar;