tor-browser

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

incrementer-worker-with-channel.js (210B)


      1 "use strict";
      2 importScripts("/resources/testharness.js");
      3 importScripts("./test-incrementer.js");
      4 
      5 self.onmessage = ({ data }) => {
      6  // data will be a MessagePort
      7  setupDestinationIncrementer(data, data);
      8 };