* Converts `value` to a plain object flattening inherited enumerable string * keyed properties of `value` to own properties of the plain object. * * @static * @memberOf _ * @since 3.0.0 * @category Lang * @param {*} value The value to convert. * @returns {Object} Returns the converte
(value)
| 55252 | * // => { 'a': 1, 'b': 2, 'c': 3 } |
| 55253 | */ |
| 55254 | function toPlainObject(value) { |
| 55255 | return copyObject(value, keysIn(value)); |
| 55256 | } |
| 55257 | |
| 55258 | module.exports = toPlainObject; |
| 55259 |
no test coverage detected