next.js/packages/next/src/lib/interop-default.ts
interop-default.ts5 lines110 B
export function interopDefault<T>(mod: { default: T } | T): T {
  // @ts-ignore
  return mod.default || mod
}
Quest for Codev2.0.0
/
SIGN IN