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
import Debug from 'debug'; const debug = Debug('debug1'); function mm() {}; mm(debug, args);
at now result after plugin is:
function mm() {};
must be:
function mm() {}; mm(()=>{}, args);
In same function "debug" can be passed as one of the arguments, the function call does not need to be canceled!
Please add support for require('debug')
The text was updated successfully, but these errors were encountered:
need to replace string №124 from if (p.parentPath.isCallExpression()) { to
if (p.parentPath.isCallExpression()) {
if (p.parentPath.isCallExpression() && p.parentPath.node.callee.name === user.node.id.name) {
Sorry, something went wrong.
No branches or pull requests
at now result after plugin is:
must be:
In same function "debug" can be passed as one of the arguments, the function call does not need to be canceled!
Please add support for require('debug')
The text was updated successfully, but these errors were encountered: