Lines Matching refs:objValue
2514 var objValue = object[key];
2515 if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||
3420 objValue = object[key],
3424 if (objValue === undefined && !(key in object)) {
3430 var result = customizer(objValue, srcValue, key, object, source, stack);
3433 ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack)
3620 var objValue = get(object, path);
3621 return (objValue === undefined && objValue === srcValue)
3623 : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
3676 var objValue = safeGet(object, key),
3685 ? customizer(objValue, srcValue, (key + ''), object, source, stack)
3697 if (isArray(objValue)) {
3698 newValue = objValue;
3700 else if (isArrayLikeObject(objValue)) {
3701 newValue = copyArray(objValue);
3716 newValue = objValue;
3717 if (isArguments(objValue)) {
3718 newValue = toPlainObject(objValue);
3720 else if (!isObject(objValue) || isFunction(objValue)) {
4040 var objValue = nested[key];
4041 newValue = customizer ? customizer(objValue, key, nested) : undefined;
4043 newValue = isObject(objValue)
4044 ? objValue
5611 * @param {*} objValue The destination value.
5614 * @param {Object} object The parent object of `objValue`.
5617 function customDefaultsAssignIn(objValue, srcValue, key, object) {
5618 if (objValue === undefined ||
5619 (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) {
5622 return objValue;
5630 * @param {*} objValue The destination value.
5633 * @param {Object} object The parent object of `objValue`.
5639 function customDefaultsMerge(objValue, srcValue, key, object, source, stack) {
5640 if (isObject(objValue) && isObject(srcValue)) {
5642 stack.set(srcValue, objValue);
5643 baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack);
5646 return objValue;
5862 var objValue = object[key],
5867 ? customizer(othValue, objValue, key, other, object, stack)
5868 : customizer(objValue, othValue, key, object, other, stack);
5872 ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))
11607 * six arguments: (objValue, othValue [, index|key, object, other, stack]).
11623 * function customizer(objValue, othValue) {
11624 * if (isGreeting(objValue) && isGreeting(othValue)) {
11899 * arguments: (objValue, srcValue, index|key, object, source).
11915 * function customizer(objValue, srcValue) {
11916 * if (isGreeting(objValue) && isGreeting(srcValue)) {
12714 * is invoked with five arguments: (objValue, srcValue, key, object, source).
12730 * function customizer(objValue, srcValue) {
12731 * return _.isUndefined(objValue) ? srcValue : objValue;
12747 * is invoked with five arguments: (objValue, srcValue, key, object, source).
12762 * function customizer(objValue, srcValue) {
12763 * return _.isUndefined(objValue) ? srcValue : objValue;
13514 * (objValue, srcValue, key, object, source, stack).
13528 * function customizer(objValue, srcValue) {
13529 * if (_.isArray(objValue)) {
13530 * return objValue.concat(srcValue);