00001 var copyObject = require('./_copyObject'), 00002 keysIn = require('./keysIn'); 00003 00028 function toPlainObject(value) { 00029 return copyObject(value, keysIn(value)); 00030 } 00031 00032 module.exports = toPlainObject;