From b081b3ae2d600de9e53766c2a4df241a96e6faf8 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 13 Jan 2016 23:09:46 -0800 Subject: [PATCH] Cleanup intentation in `baseIsMatch`. --- lodash.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 6d85307c7..7c958ee01 100644 --- a/lodash.js +++ b/lodash.js @@ -2810,7 +2810,10 @@ var stack = new Stack, result = customizer ? customizer(objValue, srcValue, key, object, source, stack) : undefined; - if (!(result === undefined ? baseIsEqual(srcValue, objValue, customizer, UNORDERED_COMPARE_FLAG | PARTIAL_COMPARE_FLAG, stack) : result)) { + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, customizer, UNORDERED_COMPARE_FLAG | PARTIAL_COMPARE_FLAG, stack) + : result + )) { return false; } }