mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-12 03:47:50 +00:00
Remove unneeded var bit from _.omit.
This commit is contained in:
@@ -9214,7 +9214,7 @@
|
|||||||
if (object == null) {
|
if (object == null) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
var props = arrayMap(baseFlatten(props), String);
|
props = arrayMap(baseFlatten(props), String);
|
||||||
return basePick(object, baseDifference(keysIn(object), props));
|
return basePick(object, baseDifference(keysIn(object), props));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user