mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 01:17:50 +00:00
Remove unneeded var assignment.
This commit is contained in:
@@ -191,8 +191,7 @@ function baseConvert(util, name, func, options) {
|
|||||||
}
|
}
|
||||||
var pairs = [];
|
var pairs = [];
|
||||||
each(keys(source), function(key) {
|
each(keys(source), function(key) {
|
||||||
var value = source[key];
|
if (isFunction(source[key])) {
|
||||||
if (isFunction(value)) {
|
|
||||||
pairs.push([key, func.prototype[key]]);
|
pairs.push([key, func.prototype[key]]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user