UNPKG

@prismicio/next

Version:

Helpers to integrate Prismic into Next.js apps

1 lines 1.12 kB
{"version":3,"file":"resolveDefaultExport.cjs","names":[],"sources":["../../src/lib/resolveDefaultExport.ts"],"sourcesContent":["/**\n * Resolves a module's default export. The module may provide its default export as a `default`\n * property on an object. This happens when named and default exports are mixed in modules.\n *\n * In ES Modules, mixing is fine since the module resolver can distinguish default and named\n * exports. In transpiled modules, however, all exports are put into a single object, and the\n * default export is provided at a property called `default`.\n *\n * This helper is needed by Next.js uses CJS files with named and default exports.\n *\n * This helper _should_ be a temporary hack until Next.js and Node.js resolve their ESM\n * difficulties. This will likely not be removed any time soon, unfortunately.\n */\nexport function resolveDefaultExport<T>(mod: T): T {\n\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\treturn \"default\" in (mod as any) ? (mod as any).default : mod\n}\n"],"mappings":";;;;;;;;;;;;;;AAaA,SAAgB,qBAAwB,KAAW;AAElD,QAAO,aAAc,MAAe,IAAY,UAAU"}