From e7ad50d2434ff907ef266c20d870386a6c1a5ecf Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 20 Jul 2015 20:08:53 -0700 Subject: [PATCH] Remove unneeded `var` bit from `_.omit`. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 458c814ce..6a5a81e9c 100644 --- a/lodash.js +++ b/lodash.js @@ -9214,7 +9214,7 @@ if (object == null) { return {}; } - var props = arrayMap(baseFlatten(props), String); + props = arrayMap(baseFlatten(props), String); return basePick(object, baseDifference(keysIn(object), props)); });