* Converts `value` to a plain object flattening inherited enumerable * properties of `value` to own properties of the plain object. * * @static * @memberOf _ * @category Lang * @param {*} value The value to convert. * @returns {Object} Returns the converted plain o
(value)
| 10501 | * // => { 'a': 1, 'b': 2, 'c': 3 } |
| 10502 | */ |
| 10503 | function toPlainObject(value) { |
| 10504 | return baseCopy(value, keysIn(value)); |
| 10505 | } |
| 10506 | |
| 10507 | /*------------------------------------------------------------------------*/ |
| 10508 |
no test coverage detected