Files
ladybird/Libraries/LibJS/Tests/modules/string-import-namespace.mjs
2024-11-10 12:50:45 +01:00

9 lines
273 B
JavaScript

import * as ns from "./default-and-star-export.mjs";
import defaultExport from "./default-and-star-export.mjs";
export const passed =
ns.default === "defaultValue" &&
ns["*"] === "starExportValue" &&
ns[""] === "empty" &&
defaultExport === "defaultValue";