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.

_escapeStringChar.js 521B

12345678910111213141516171819202122
  1. /** Used to escape characters for inclusion in compiled string literals. */
  2. var stringEscapes = {
  3. '\\': '\\',
  4. "'": "'",
  5. '\n': 'n',
  6. '\r': 'r',
  7. '\u2028': 'u2028',
  8. '\u2029': 'u2029'
  9. };
  10. /**
  11. * Used by `_.template` to escape characters for inclusion in compiled string literals.
  12. *
  13. * @private
  14. * @param {string} chr The matched character to escape.
  15. * @returns {string} Returns the escaped character.
  16. */
  17. function escapeStringChar(chr) {
  18. return '\\' + stringEscapes[chr];
  19. }
  20. module.exports = escapeStringChar;