tor-browser

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

preview-getter.js (205B)


      1 const obj = {
      2  propA: 1,
      3  propB: { arr: [1,2,3,4,5] },
      4  get getPropA() {
      5    this.propA;
      6    return this.propA;
      7  },
      8  get getPropB() {
      9    return this.propB;
     10  }
     11 }
     12 
     13 function funcA() {
     14  obj.getPropA;
     15 }