2016-10-10 03:43:44 +02:00
|
|
|
var castPath = require('./_castPath'),
|
|
|
|
last = require('./last'),
|
|
|
|
parent = require('./_parent'),
|
|
|
|
toKey = require('./_toKey');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
2017-04-20 03:09:25 +02:00
|
|
|
return object == null || delete object[toKey(last(path))];
|
2016-10-10 03:43:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = baseUnset;
|