From 18f778ce1114aa112c675c397161727b3e035532 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 16 Jul 2015 20:59:21 -0700 Subject: [PATCH] Remove `var` use for the `baseKeysIn` fork assignment. --- lodash.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index 18c1692ae..50c6327b8 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -2144,7 +2144,7 @@ // An alternative implementation intended for IE < 9 with es6-shim. if (enumerate && !propertyIsEnumerable.call({ 'valueOf': 1 }, 'valueOf')) { - var baseKeysIn = function(object) { + baseKeysIn = function(object) { var data, iterator = enumerate(object), result = [];