tor-browser

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

computed-props.js (103B)


      1 (function(key) {
      2  let obj = {
      3    b: 5
      4  };
      5  obj[key] = 0;
      6  const c = obj.b;
      7  return obj;
      8 })("a");