tor-browser

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

native-trampoline-2.js (195B)


      1 let arr = [1, 2, 3, 4, 5, 6, 7, 8];
      2 arr.sort((x, y) => {
      3  enableGeckoProfilingWithSlowAssertions();
      4  readGeckoProfilingStack();
      5  return y - x;
      6 });
      7 assertEq(arr.toString(), "8,7,6,5,4,3,2,1");