(s)
| 2440 | return s && s.mergeDeep && isIterable(o) ? s.mergeDeep(o) : is(s, o) ? s : o |
| 2441 | } |
| 2442 | function deepMergerWith(s) { |
| 2443 | return function (o, i, a) { |
| 2444 | if (o && o.mergeDeepWith && isIterable(i)) return o.mergeDeepWith(s, i) |
| 2445 | var u = s(o, i, a) |
| 2446 | return is(o, u) ? o : u |
| 2447 | } |
| 2448 | } |
| 2449 | function mergeIntoCollectionWith(s, o, i) { |
| 2450 | return 0 === |
| 2451 | (i = i.filter(function (s) { |
no test coverage detected