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