Simplify _.result.

This commit is contained in:
Jordan Eldredge
2016-03-30 18:39:40 -07:00
committed by John-David Dalton
parent 608e74a111
commit ad72b5b565

View File

@@ -12540,9 +12540,9 @@
index = length;
value = defaultValue;
}
object = value = isFunction(value) ? value.call(object) : value;
object = isFunction(value) ? value.call(object) : value;
}
return value;
return object;
}
/**