blob: d61158f85a3d0e8e4b12c8fe55e8e801401a95bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { "*" as starImport, "" as emptyImport } from "./default-and-star-export.mjs";
import {
"*" as starImportIndirect,
"" as emptyImportIndirect,
} from "./default-and-star-export-indirect.mjs";
export const passed =
starImport === "starExportValue" &&
starImportIndirect === "starExportValue" &&
emptyImport === "empty" &&
emptyImportIndirect === "empty";
|