diff --git a/lodash.src.js b/lodash.src.js index e4edf2721..9be0eec86 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -2471,7 +2471,7 @@ if (isStrictComparable(value)) { return function(object) { - return object != null && value === object[key] && hasOwnProperty.call(object, key); + return object != null && object[key] === value && hasOwnProperty.call(object, key); }; } }