tor-browser

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

es6module_dynamic_import_syntax_error.js (328B)


      1 let resolve;
      2 
      3 export const result = new Promise(r => { resolve = r; });
      4 
      5 import("./es6module_dynamic_import_syntax_error2.js").then(ns => {}, e => {
      6  resolve(e);
      7 });
      8 
      9 export async function doImport() {
     10  try {
     11    await import("./es6module_dynamic_import_syntax_error3.js");
     12  } catch (e) {
     13    return e;
     14  }
     15 
     16  return null;
     17 }