* Creates an array of the own enumerable string keyed property values of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The
(object)
| 24552 | * // => ['h', 'i'] |
| 24553 | */ |
| 24554 | function values(object) { |
| 24555 | return object == null ? [] : baseValues(object, keys(object)); |
| 24556 | } |
| 24557 | |
| 24558 | /** |
| 24559 | * Creates an array of the own and inherited enumerable string keyed property |
no test coverage detected