tor-browser

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

bug1892699-1.js (166B)


      1 function* a(x, y, z) {
      2    if (arguments.length !== 3) {
      3        throw "Wrong output";
      4    }
      5    yield x;
      6    yield y;
      7    yield z;
      8 }
      9 const x = a(3, 4, 5);
     10 x.next();