diff --git a/Libraries/vendor/core/mergeInto.js b/Libraries/vendor/core/mergeInto.js index d42b3dcf36e..7ea0d50c7da 100644 --- a/Libraries/vendor/core/mergeInto.js +++ b/Libraries/vendor/core/mergeInto.js @@ -47,7 +47,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];