* Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain * objects. * * @private * @param {*} value The value to inspect. * @param {string} key The key of the property to inspect. * @returns {*} Returns the uncloned value or `undefined` to defer cloning
(value)
| 5687 | * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. |
| 5688 | */ |
| 5689 | function customOmitClone(value) { |
| 5690 | return isPlainObject(value) ? undefined : value; |
| 5691 | } |
| 5692 | |
| 5693 | /** |
| 5694 | * A specialized version of `baseIsEqualDeep` for arrays with support for |
nothing calls this directly
no test coverage detected