mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
Remove isArrayLike and isPlainObject guards from baseMerge.
This commit is contained in:
@@ -2173,8 +2173,8 @@
|
||||
var isSrcArr = isArrayLike(source);
|
||||
|
||||
(isSrcArr ? arrayEach : baseForOwn)(source, function(srcValue, key, source) {
|
||||
var isArr = srcValue && isArrayLike(srcValue),
|
||||
isObj = srcValue && isPlainObject(srcValue),
|
||||
var isArr = isArrayLike(srcValue),
|
||||
isObj = isPlainObject(srcValue),
|
||||
value = object[key];
|
||||
|
||||
if (!(isArr || isObj)) {
|
||||
|
||||
Reference in New Issue
Block a user