tor-browser

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

primitives-handling-in-promise-all.js (106B)


      1 // This just shouldn't crash.
      2 ignoreUnhandledRejections();
      3 
      4 Promise.resolve = () => 42;
      5 Promise.all([1]);