input.js 244 B

123456
  1. "before
after";
  2. // ^ That's a U+2029 PARAGRAPH SEPARATOR UTF-16 char (between 'before' and 'after')
  3. "
"; // Just a U+2029 PARAGRAPH SEPARATOR
  4. "\
"; // Escaped U+2029 PARAGRAPH SEPARATOR
  5. "\u2029"; // Escaped U+2029 PARAGRAPH SEPARATOR