From c0f91c91696ad181caaa20854c6b1009a7b1dc99 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 29 Mar 2016 22:48:08 -0700 Subject: [PATCH] Minor newline nits. --- lodash.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 61aad82e6..b1a715401 100644 --- a/lodash.js +++ b/lodash.js @@ -2982,8 +2982,7 @@ if (value === other) { return true; } - if (value == null || other == null || - (!isObject(value) && !isObjectLike(other))) { + if (value == null || other == null || (!isObject(value) && !isObjectLike(other))) { return value !== value && other !== other; } return baseIsEqualDeep(value, other, baseIsEqual, customizer, bitmask, stack); @@ -4923,7 +4922,7 @@ } } else if (!( arrValue === othValue || - equalFunc(arrValue, othValue, customizer, bitmask, stack) + equalFunc(arrValue, othValue, customizer, bitmask, stack) )) { result = false; break;