We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
code:
export function foo(a) {}
transformed
__exports.foo(a) = foo(a); // ? it is wrong obviously, should be __exports.foo = function foo(a) {}
The text was updated successfully, but these errors were encountered:
thanks! fixed in 0.0.11
Sorry, something went wrong.
thanks! Btw do you mean to solve the circular dependency problem?
// even.js import { odd } from './odd.js' export var counter = 0; export function even(n) { counter++; return n == 0 || odd(n - 1); } // odd.js import { even } from './even.js'; export function odd(n) { return n != 0 && even(n - 1); }
the promise returned by __shimport__ will always keep pending status due to the circular dependency.
__shimport__
pending
It's a fair question — I've opened #5 to track it.
No branches or pull requests
code:
transformed
The text was updated successfully, but these errors were encountered: