var eq = ;
/** Used for built-in method references. */
var objectProto = ;
/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.;
/**
* Used by `_.defaults` to customize its `_.assignIn` use to assign properties
* of source objects to the destination object for all destination properties
* that resolve to `undefined`.
*
* @private
* @param {*} objValue The destination value.
* @param {*} srcValue The source value.
* @param {string} key The key of the property to assign.
* @param {Object} object The parent object of `objValue`.
* @returns {*} Returns the value to assign.
*/
module.exports = customDefaultsAssignIn;