ladybird/Userland/Libraries/LibJS/Tests/modules/default-and-star-export-indirect-string.mjs
davidot f75c51b097 LibJS: Allow full ModuleExportName in namespace
This means we should accept a string after 'export * as '.
2022-09-02 02:07:37 +01:00

2 lines
131 B
JavaScript

// This is an all export and should thus provide the full namespace.
export * as "viaString" from "./default-and-star-export.mjs";