Files
JiboViteDocs/node_modules/lodash-es/_escapeHtmlChar.js
Your Name 38652eb9b5 Initalize
2026-05-03 12:12:57 -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;