Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

21 lines
493 B

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