tor-browser

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

this-4.js (122B)


      1 // 'this' in a toplevel arrow is the global object.
      2 
      3 var f = () => this;
      4 assertEq(f(), this);
      5 assertEq({f: f}.f(), this);