diff options
Diffstat (limited to 'node_modules/lodash/_equalObjects.js')
-rw-r--r-- | node_modules/lodash/_equalObjects.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/node_modules/lodash/_equalObjects.js b/node_modules/lodash/_equalObjects.js index 7044ae9bb..17421f374 100644 --- a/node_modules/lodash/_equalObjects.js +++ b/node_modules/lodash/_equalObjects.js @@ -1,4 +1,4 @@ -var keys = require('./keys'); +var getAllKeys = require('./_getAllKeys'); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1; @@ -24,9 +24,9 @@ var hasOwnProperty = objectProto.hasOwnProperty; */ 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) { |