tor-browser

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

worker_grandchild.js (274B)


      1 self.addEventListener("message", function (event) {
      2  let timeStampCodes = event.data;
      3 
      4  let timeStamps = [];
      5  for (let timeStampCode of timeStampCodes) {
      6    timeStamps.push(eval(timeStampCode));
      7  }
      8  // Send the timeStamps to the parent.
      9  postMessage(timeStamps);
     10 });