Files
lodash/_baseUnset.js
John-David Dalton 0c27706e89 Bump to v4.17.2.
2016-11-15 22:20:52 -08:00

19 lines
566 B
JavaScript

define(['./_castPath', './last', './_parent', './_toKey'], function(castPath, last, parent, toKey) {
/**
* The base implementation of `_.unset`.
*
* @private
* @param {Object} object The object to modify.
* @param {Array|string} path The property path to unset.
* @returns {boolean} Returns `true` if the property is deleted, else `false`.
*/
function baseUnset(object, path) {
path = castPath(path, object);
object = parent(object, path);
return object == null || delete object[toKey(last(path))];
}
return baseUnset;
});