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
Posted #42 with a failing test for the following reexport form in Babel:
var _p = require("p"); Object.keys(_p).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (key in exports && exports[key] === _p[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function () { return _p[key]; } }); });
We should probably add support for the if (key in exports && exports[key] === _p[key]) return; line here I think.
if (key in exports && exports[key] === _p[key]) return;
The text was updated successfully, but these errors were encountered:
Turns out the test was incorrectly constructed here.
Sorry, something went wrong.
No branches or pull requests
Posted #42 with a failing test for the following reexport form in Babel:
We should probably add support for the
if (key in exports && exports[key] === _p[key]) return;
line here I think.The text was updated successfully, but these errors were encountered: