From 9fa0ec00b8a5d1f2f26d26137c07318aa3a17477 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 23 Apr 2016 11:43:15 -0700 Subject: [PATCH] Remove unneeded var assignment. --- fp/_baseConvert.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fp/_baseConvert.js b/fp/_baseConvert.js index fd66bce15..e177cdd03 100644 --- a/fp/_baseConvert.js +++ b/fp/_baseConvert.js @@ -191,8 +191,7 @@ function baseConvert(util, name, func, options) { } var pairs = []; each(keys(source), function(key) { - var value = source[key]; - if (isFunction(value)) { + if (isFunction(source[key])) { pairs.push([key, func.prototype[key]]); } });