Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_escapeHtmlChar.js 479B

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;