blob: c06777aae3ca9b606345d0494b37e057f253e27f (
plain)
1
2
3
4
5
6
7
8
|
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";
|