tor-browser

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

next-on-finished.js (114B)


      1 function*g(){ };
      2 o = g();
      3 o.next();
      4 result = o.next();
      5 assertEq(result.done, true);
      6 assertEq(o.value, undefined);