(val)
| 143377 | } |
| 143378 | |
| 143379 | function emptyTarget(val) { |
| 143380 | return Array.isArray(val) ? [] : {}; |
| 143381 | } |
| 143382 | |
| 143383 | function cloneUnlessOtherwiseSpecified(value, options) { |
| 143384 | return options.clone !== false && options.isMergeableObject(value) ? deepmerge(emptyTarget(value), value, options) : value; |
no outgoing calls
no test coverage detected