module-with-default.mjs 129 B

1234567
  1. const value = "Well hello importer :^)";
  2. export const defaultValue = value;
  3. export default value;
  4. export const passed = true;