tor-browser

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

export-on-dynamic-import-script.js (349B)


      1 // Export the list of imported modules. It's available after the |ready| promise
      2 // is resolved.
      3 export let importedModules = ['export-on-dynamic-import-script.js'];
      4 export let ready = import('./export-on-load-script.js')
      5  .then(module => {
      6    Array.prototype.push.apply(importedModules, module.importedModules);
      7    return importedModules;
      8  });