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
self.evalFilter -> filterFunc is not working properly when value is numeric 0. Problem is here (line 2154, build 2.0.6):
if (!value || !result) { return false; }
!0 returns true. Should be fixed like this:
if (value === undefined || value === null || !result) { return false; }
The text was updated successfully, but these errors were encountered:
Fix for #522
a8508db
Thanks. Should be fixed in latest 2.0.7.
Sorry, something went wrong.
No branches or pull requests
self.evalFilter -> filterFunc is not working properly when value is numeric 0.
Problem is here (line 2154, build 2.0.6):
!0 returns true.
Should be fixed like this:
The text was updated successfully, but these errors were encountered: