tor-browser

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

input.js (211B)


      1 var fn = async function fn() {
      2  console.log("pause here");
      3 
      4  await doAsync();
      5 
      6  console.log("stopped here");
      7 };
      8 
      9 function doAsync() {
     10  return Promise.resolve();
     11 }
     12 
     13 export default function root() {
     14  fn();
     15 }