-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module type has no match in show() #4
Comments
How would one represent a module as a string? |
To stay true to 'Object.assign(Object.create(null), {[Symbol.toStringTag]: "Module", "default": 42})' There are three additions needed to achieve this goal, the first being the most important:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dynamic imports in ES return a
Promise Module
and theString.toStringTag
pattern matches ofshow()
don't cover[object Module]
.Related sanctuary-js/sanctuary-def#218
The text was updated successfully, but these errors were encountered: