tor-browser

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

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


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