tor-browser

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

es6module_cycle_a.js (162B)


      1 export const name = "a";
      2 
      3 import { name as bName } from "./es6module_cycle_b.js";
      4 
      5 export let loaded = true;
      6 
      7 export function getValueFromB() {
      8  return bName;
      9 }