rittenhop-dev/versions/5.94.2/node_modules/lodash-es/_escapeHtmlChar.js
2024-09-23 19:40:12 -04:00

22 lines
477 B
JavaScript

import basePropertyOf from './_basePropertyOf.js';
/** Used to map characters to HTML entities. */
var htmlEscapes = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#39;'
};
/**
* Used by `_.escape` to convert characters to HTML entities.
*
* @private
* @param {string} chr The matched character to escape.
* @returns {string} Returns the escaped character.
*/
var escapeHtmlChar = basePropertyOf(htmlEscapes);
export default escapeHtmlChar;