varbasePropertyOf=require('./_basePropertyOf');/** Used to map characters to HTML entities. */varhtmlEscapes={'&':'&','<':'<','>':'>','"':'"',"'":'''};/** * Used by `_.escape` to convert characters to HTML entities. * * @private * @param {string} chr The matched character to escape. * @returns {string} Returns the escaped character. */varescapeHtmlChar=basePropertyOf(htmlEscapes);module.exports=escapeHtmlChar;