UNPKG

react-imported-component

Version:
10 lines (9 loc) 260 B
export function asDefault(mayBeNotDefault) { if ('default' in mayBeNotDefault) { return mayBeNotDefault; } return { default: mayBeNotDefault, }; } export const es6import = (module) => (module.default ? module.default : module);