module-info.js 262 B

123456789
  1. export const normalizeModuleInfo = (value) => {
  2. const {
  3. type = "esm",
  4. varName,
  5. namedExports = null,
  6. defaultExport = true,
  7. } = typeof value === "string" ? { varName: value } : value;
  8. return { type, varName, namedExports, defaultExport };
  9. };