default-and-star-export.mjs 125 B

123456
  1. export default "defaultValue";
  2. const star = "starExportValue";
  3. const empty = "empty";
  4. export { star as "*", empty as "" };