diff --git a/Libraries/vendor/core/mergeInto.js b/Libraries/vendor/core/mergeInto.js index 31e869059328ea..024289f67533f7 100644 --- a/Libraries/vendor/core/mergeInto.js +++ b/Libraries/vendor/core/mergeInto.js @@ -23,7 +23,7 @@ function mergeInto(one, two) { if (two != null) { checkMergeObjectArg(two); for (var key in two) { - if (!two.hasOwnProperty(key)) { + if (!Object.prototype.hasOwnProperty.call(two, key)) { continue; } one[key] = two[key];