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 return value of _getField() is usually defined by:
_getField()
if (!doc[field[i]]) { return; // === undefined }
and then the existance of the field is determined by:
if (typeof _getField(cache, item) === "undefined") { innocent = false; }}
This will cause the cache to be missed if a required field exists but is falsy. E.g.:
doc = {admin: false}; // or null fails as well field = 'admin'; _getField(doc, field); // undefined, the cache will be ignored :-(
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The return value of
_getField()
is usually defined by:and then the existance of the field is determined by:
This will cause the cache to be missed if a required field exists but is falsy. E.g.:
The text was updated successfully, but these errors were encountered: