tor-browser

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

fromCharCode.js (203B)


      1 /*
      2 * Any copyright is dedicated to the Public Domain.
      3 * http://creativecommons.org/licenses/publicdomain/
      4 */
      5 
      6 for (var i = 0; i <= 0xFFFF; i++) {
      7    assertEq(String.fromCharCode(i).charCodeAt(0), i);
      8 }