(s, o, i)
| 2437 | return mergeIntoCollectionWith(s, o, a) |
| 2438 | } |
| 2439 | function deepMerger(s, o, i) { |
| 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) |
nothing calls this directly
no test coverage detected