tor-browser

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

rest-in-Function.js (125B)


      1 h = Function("a", "b", "c", "...rest", "return rest.toString();");
      2 assertEq(h.length, 3);
      3 assertEq(h(1, 2, 3, 4, 5), "4,5");