00001 var isPlainObject = require('./isPlainObject'); 00002 00012 function customOmitClone(value) { 00013 return isPlainObject(value) ? undefined : value; 00014 } 00015 00016 module.exports = customOmitClone;