tor-browser

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

original.js (290B)


      1 window.bar = function bar() {
      2  return new Promise(resolve => setTimeout(resolve, 100))
      3 }
      4 
      5 window.foo = async function foo() {
      6  // This will call a function from script.js, itself calling a function
      7  // from original-with-query.js
      8  await nonSourceMappedFunction();
      9  console.log("YO")
     10 }