tor-browser

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

async.js (162B)


      1 async function thing(inc) {
      2  return new Promise(resolve => {
      3    setTimeout(resolve, 10);
      4  });
      5 }
      6 
      7 async function main() {
      8  await thing(1);
      9  await thing(2);
     10 }