e2458ae0d82672b3515c02310d4ee05eb1f8c647ef2299df2e99abc96d1b4799e4996594d2ec302939c28365fda3a85f570a7fd117bb074202b50bb6bf8150 479 B

123456789101112131415161718192021
  1. var basePropertyOf = require('./_basePropertyOf');
  2. /** Used to map characters to HTML entities. */
  3. var htmlEscapes = {
  4. '&': '&',
  5. '<': '&lt;',
  6. '>': '&gt;',
  7. '"': '&quot;',
  8. "'": '&#39;'
  9. };
  10. /**
  11. * Used by `_.escape` to convert characters to HTML entities.
  12. *
  13. * @private
  14. * @param {string} chr The matched character to escape.
  15. * @returns {string} Returns the escaped character.
  16. */
  17. var escapeHtmlChar = basePropertyOf(htmlEscapes);
  18. module.exports = escapeHtmlChar;