mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 12:24:18 +00:00
13 lines
386 B
JavaScript
13 lines
386 B
JavaScript
|
|
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";
|