tor-browser

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

super-base-is-null-get-prop.js (178B)


      1 class NullProto {
      2  static m() {
      3    try {
      4      return super.p;
      5    } catch {}
      6  }
      7 }
      8 Object.setPrototypeOf(NullProto, null);
      9 
     10 for (var i = 0; i < 100; ++i) {
     11  NullProto.m();
     12 }