Remove unneeded var bit from _.omit.

This commit is contained in:
John-David Dalton
2015-07-20 20:08:53 -07:00
parent 1394d42f58
commit e7ad50d243

View File

@@ -9214,7 +9214,7 @@
if (object == null) {
return {};
}
var props = arrayMap(baseFlatten(props), String);
props = arrayMap(baseFlatten(props), String);
return basePick(object, baseDifference(keysIn(object), props));
});