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
Got interesting bug when I pass anonymous function as argument to another function:
Input:
import { debounce } from '@/helpers'; export default { methods: { changeBody: debounce(function (event) { console.log('debounce test'); }), }, };
Ouput:
import { debounce } from '@/helpers'; // Methods const changeBody = functiondebounce(function (event) { console.log('debounce test'); })
The text was updated successfully, but these errors were encountered:
Thanks for reporting. It probably the AST taking the first argument as the function name. I will see what I can do
Sorry, something went wrong.
This is fixed in latest update
No branches or pull requests
Got interesting bug when I pass anonymous function as argument to another function:
Input:
Ouput:
The text was updated successfully, but these errors were encountered: