tor-browser

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

es6module_absolute.js (176B)


      1 import { x as x1 } from "resource://test/es6module_absolute2.js";
      2 import { x as x2 } from "./es6module_absolute2.js";
      3 export const absoluteX = x1;
      4 export const relativeX = x2;