tor-browser

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

bug1733899.js (167B)


      1 a = {}
      2 a[Symbol.iterator] = function() {
      3  return {
      4    next() {
      5      return {
      6        done: this
      7      }
      8    }
      9  }
     10 }
     11 function b([[]] = a) {}
     12 try {
     13  b();
     14 } catch {}