includable.js 145 B

1234567
  1. var STRING_SUBSTITUTIONS = { // table of character substitutions
  2. '\t': '\\t',
  3. '\r': '\\r',
  4. '\n': '\\n',
  5. '"' : '\\"',
  6. '\\': '\\\\'
  7. };