Files
ladybird/Tests/LibJS/Runtime/modules/string-import-namespace.mjs
2026-01-22 07:46:48 -05: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";