Sha256: c3635eb6c74a9b523cebd93c46f3e8c816ffafb613aa9774cce2714b60aca630
Contents?: true
Size: 475 Bytes
Versions: 273
Compression:
Stored size: 475 Bytes
Contents
var isPlainObject = require('./isPlainObject'); /** * 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 to `_.cloneDeep`. */ function customOmitClone(value) { return isPlainObject(value) ? undefined : value; } module.exports = customOmitClone;
Version data entries
273 entries across 272 versions & 29 rubygems