mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 18:47:15 +02:00
This matches our coding style recommendation in CodingStyle.md, and matches our python formatting.
10 lines
377 B
JavaScript
10 lines
377 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";
|