string-import-namespace.mjs 273 B

12345678
  1. import * as ns from "./default-and-star-export.mjs";
  2. import defaultExport from "./default-and-star-export.mjs";
  3. export const passed =
  4. ns.default === "defaultValue" &&
  5. ns["*"] === "starExportValue" &&
  6. ns[""] === "empty" &&
  7. defaultExport === "defaultValue";