tor-browser

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

strict-3.js (173B)


      1 // "use strict" is not special as the body of an arrow function without braces.
      2 
      3 var f = (a = obj => { with (obj) return x; }) => "use strict";
      4 assertEq(f(), "use strict");