tor-browser

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

bug-1439416-2.js (194B)


      1 function parseAsModule(source) {
      2    return Reflect.parse(source, {
      3        target: "module",
      4        line: 0x7FFFFFFF + 1,
      5    });
      6 }
      7 parseAsModule(`
      8    import {a} from "";
      9    export {a};
     10 `);