* Creates an array of the own enumerable property values of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array of pro
(object)
| 11422 | * // => ['h', 'i'] |
| 11423 | */ |
| 11424 | function values(object) { |
| 11425 | return baseValues(object, keys(object)); |
| 11426 | } |
| 11427 | |
| 11428 | /** |
| 11429 | * Creates an array of the own and inherited enumerable property values |
no test coverage detected