Lines Matching refs:isPartial
57114 var isPartial = bitmask & PARTIAL_COMPARE_FLAG,
57118 if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
57140 …var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer…
57230 var isPartial = bitmask & PARTIAL_COMPARE_FLAG;
57233 if (object.size != other.size && !isPartial) {
57277 var isPartial = bitmask & PARTIAL_COMPARE_FLAG,
57283 if (objLength != othLength && !isPartial) {
57292 if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
57307 var skipCtor = isPartial;
57315 …var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(…
59394 var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
59398 if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
59420 …var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer…
59509 var isPartial = bitmask & COMPARE_PARTIAL_FLAG;
59512 if (object.size != other.size && !isPartial) {
59555 var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
59561 if (objLength != othLength && !isPartial) {
59570 if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
59585 var skipCtor = isPartial;
59593 …var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(…