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
app-storage-behavior.html, line 470:
__pathRefersToArray: function(path) { return (SPLICES_RX.test(path) || LENGTH_RX.test(path)) Array.isArray(this.get(this.__parentPath(path))); },
Missing && expression in return statement:
__pathRefersToArray: function(path) { return (SPLICES_RX.test(path) || LENGTH_RX.test(path)) && Array.isArray(this.get(this.__parentPath(path))); },
The text was updated successfully, but these errors were encountered:
@userquin @cdata Please take a look at this issue.
Sorry, something went wrong.
This throws error on FF but not Chrome.
yes, only on FF but I don't know why Chrome works and if it is applying correctly the stament ;)
To fix #73 for missing operator (#74)
617759b
Successfully merging a pull request may close this issue.
app-storage-behavior.html, line 470:
Missing && expression in return statement:
The text was updated successfully, but these errors were encountered: