var baseAssignValue = ,
eq = ;
/** Used for built-in method references. */
var objectProto = ;
/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.;
/**
* Assigns `value` to `key` of `object` if the existing value is not equivalent
* using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
* for equality comparisons.
*
* @private
* @param {Object} object The object to modify.
* @param {string} key The key of the property to assign.
* @param {*} value The value to assign.
*/
module.exports = assignValue;