mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
This matches our coding style recommendation in CodingStyle.md, and matches our python formatting.
9 lines
377 B
JavaScript
9 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";
|