Files
ladybird/Libraries/LibJS/Tests/modules/default-and-star-export.mjs
2024-11-10 12:50:45 +01:00

7 lines
125 B
JavaScript

export default "defaultValue";
const star = "starExportValue";
const empty = "empty";
export { star as "*", empty as "" };