Lines Matching refs:other
25 function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { argument
29 othProps = getAllKeys(other),
38 if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
44 var othStacked = stack.get(other);
46 return objStacked == other && othStacked == object;
49 stack.set(object, other);
50 stack.set(other, object);
56 othValue = other[key];
60 ? customizer(othValue, objValue, key, other, object, stack)
61 : customizer(objValue, othValue, key, object, other, stack);
75 othCtor = other.constructor;
79 ('constructor' in object && 'constructor' in other) &&
86 stack['delete'](other);