Bump to v4.17.3.

This commit is contained in:
John-David Dalton
2016-12-19 17:17:56 -06:00
parent 0c27706e89
commit c7a7540e16
28 changed files with 195 additions and 152 deletions

View File

@@ -1,4 +1,4 @@
define(['./keys'], function(keys) {
define(['./_getAllKeys'], function(getAllKeys) {
/** Used as a safe reference for `undefined` in pre-ES5 environments. */
var undefined;
@@ -27,9 +27,9 @@ define(['./keys'], function(keys) {
*/
function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
objProps = keys(object),
objProps = getAllKeys(object),
objLength = objProps.length,
othProps = keys(other),
othProps = getAllKeys(other),
othLength = othProps.length;
if (objLength != othLength && !isPartial) {