ladybird/Libraries/LibJS/Tests/modules/string-import-names.mjs
Timothy Flynn 019c529c07 Meta: Increase the line length enforced by prettier to 120
This matches our coding style recommendation in CodingStyle.md, and
matches our python formatting.
2025-10-31 19:55:50 -04:00

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";