9626b1c1c255c07767e3d0a310c8141d6142bba71255a6ef190362b19adbe550.json 580 B

1
  1. {"ast":null,"code":"import isPlainObject from './isPlainObject.js';\n\n/**\n * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain\n * objects.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {string} key The key of the property to inspect.\n * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.\n */\nfunction customOmitClone(value) {\n return isPlainObject(value) ? undefined : value;\n}\nexport default customOmitClone;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}