tor-browser

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

bug1438727.js (189B)


      1 const handler = {}
      2 function testArray(arr) {
      3    let proxy = new Proxy(arr, handler)
      4    proxy.sort((x, y) => 1 * x - y);
      5    arr.sort((x, y) => 1 * x - y);
      6 }
      7 testArray([5, (this), 2, 99]);