Lines Matching refs:object
25 function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { argument
27 objProps = getAllKeys(object),
43 var objStacked = stack.get(object);
46 return objStacked == other && othStacked == object;
49 stack.set(object, other);
50 stack.set(other, object);
55 var objValue = object[key],
60 ? customizer(othValue, objValue, key, other, object, stack)
61 : customizer(objValue, othValue, key, object, other, stack);
74 var objCtor = object.constructor,
79 ('constructor' in object && 'constructor' in other) &&
85 stack['delete'](object);