tor-browser

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

WeakMap-constructor-generator-3.js (143B)


      1 // The argument to WeakMap may be a generator-iterator that produces no values.
      2 
      3 function* none() {
      4    if (0) yield 0;
      5 }
      6 new WeakMap(none());