2016-10-10 03:43:44 +02:00
|
|
|
var castPath = require('./_castPath'),
|
|
|
|
last = require('./last'),
|
|
|
|
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`.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @param {Object} object The object to modify.
|
2016-11-16 01:59:39 +01:00
|
|
|
* @param {Array|string} path The property path to unset.
|
2016-10-10 03:43:44 +02:00
|
|
|
* @returns {boolean} Returns `true` if the property is deleted, else `false`.
|
|
|
|
*/
|
|
|
|
function baseUnset(object, path) {
|
2016-11-16 01:59:39 +01:00
|
|
|
path = castPath(path, object);
|
2016-10-10 03:43:44 +02:00
|
|
|
object = parent(object, path);
|
|
|
|
var key = toKey(last(path));
|
|
|
|
return !(object != null && hasOwnProperty.call(object, key)) || delete object[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = baseUnset;
|