tor-browser

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

testDirectProxyApply1.js (201B)


      1 // Forward to the target if the trap is undefined
      2 var target = function (x, y) {
      3    return x + y;
      4 }
      5 for (let p of [new Proxy(target, {}), Proxy.revocable(target, {}).proxy])
      6    assertEq(p(2, 3), 5);