Graduation / ui /node_modules /lodash-es /_unescapeHtmlChar.js
DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
491 Bytes
import basePropertyOf from './_basePropertyOf.js';
/** Used to map HTML entities to characters. */
var htmlUnescapes = {
'&': '&',
'&lt;': '<',
'&gt;': '>',
'&quot;': '"',
'&#39;': "'"
};
/**
* Used by `_.unescape` to convert HTML entities to characters.
*
* @private
* @param {string} chr The matched character to unescape.
* @returns {string} Returns the unescaped character.
*/
var unescapeHtmlChar = basePropertyOf(htmlUnescapes);
export default unescapeHtmlChar;