tor-browser

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

input.js (237B)


      1 var module = {};
      2 
      3 module.exports = function(x) {
      4  return x * 2;
      5 };
      6 
      7 
      8 export default function root() {
      9  // This example is structures to look like CommonJS in order to replicate
     10  // a previously-encountered bug.
     11  module.exports(4);
     12 }