From 65daae20430b14b4b0f94cb908f1241776cf585b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 31 Oct 2016 10:12:52 -0700 Subject: [PATCH] Remove unneeded var assignment in `baseXor`. --- lodash.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 367ad55cc..f969108bf 100644 --- a/lodash.js +++ b/lodash.js @@ -4413,9 +4413,8 @@ othIndex = -1; while (++othIndex < length) { - var othArray = arrays[othIndex]; if (othIndex != index) { - result[index] = baseDifference(result[index] || array, othArray, iteratee, comparator); + result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); } } }