mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Remove unneeded var assignment.
This commit is contained in:
@@ -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]]);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user