tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug1750935.js (362B)


      1 // Parse-time static string lookup.
      2 var s = "\ue531\ue531\ue531";
      3 assertEq(s.codePointAt(0), 0xe531);
      4 assertEq(s.codePointAt(1), 0xe531);
      5 assertEq(s.codePointAt(2), 0xe531);
      6 
      7 // Runtime static string lookup.
      8 s = "\ue531\ue531\ue5310n".split(/\d[^]/)[0];
      9 assertEq(s.codePointAt(0), 0xe531);
     10 assertEq(s.codePointAt(1), 0xe531);
     11 assertEq(s.codePointAt(2), 0xe531);