diff --git a/exports/import.mjs b/exports/import.mjs index 82e441b..6cf9c1c 100644 --- a/exports/import.mjs +++ b/exports/import.mjs @@ -1,2 +1,2 @@ import { default as m } from "../dist/index.js"; -export default m.default; +export default typeof m === "function" ? m : m.default;