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
The plugin only evaluate assignment expressions. This is a problem because you can have expressions like this one:
var someObject = { someKey: { ...mapGetters([ 'some_val_1', 'some_val_2' ]) } }
In this case the plugin isn't working properly.
The text was updated successfully, but these errors were encountered:
Can you clarify what output you get and what you would expect? To me, the current output looks reasonable.
Sorry, something went wrong.
Add test
685ddfc
From victor-homyakov/acorn-object-rest-spread#2.
No branches or pull requests
The plugin only evaluate assignment expressions. This is a problem because you can have expressions like this one:
var someObject = {
someKey: {
...mapGetters([
'some_val_1',
'some_val_2'
])
}
}
In this case the plugin isn't working properly.
The text was updated successfully, but these errors were encountered: