summaryrefslogtreecommitdiff
path: root/node_modules/lodash/_baseUnset.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash/_baseUnset.js')
-rw-r--r--node_modules/lodash/_baseUnset.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/node_modules/lodash/_baseUnset.js b/node_modules/lodash/_baseUnset.js
index f752bea4c..eefc6e37d 100644
--- a/node_modules/lodash/_baseUnset.js
+++ b/node_modules/lodash/_baseUnset.js
@@ -3,12 +3,6 @@ var castPath = require('./_castPath'),
parent = require('./_parent'),
toKey = require('./_toKey');
-/** Used for built-in method references. */
-var objectProto = Object.prototype;
-
-/** Used to check objects for own properties. */
-var hasOwnProperty = objectProto.hasOwnProperty;
-
/**
* The base implementation of `_.unset`.
*
@@ -20,8 +14,7 @@ var hasOwnProperty = objectProto.hasOwnProperty;
function baseUnset(object, path) {
path = castPath(path, object);
object = parent(object, path);
- var key = toKey(last(path));
- return !(object != null && hasOwnProperty.call(object, key)) || delete object[key];
+ return object == null || delete object[toKey(last(path))];
}
module.exports = baseUnset;