* Creates an array of the own and inherited enumerable string keyed property * values of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @since 3.0.0 * @category Object * @p
(object)
| 24580 | * // => [1, 2, 3] (iteration order is not guaranteed) |
| 24581 | */ |
| 24582 | function valuesIn(object) { |
| 24583 | return object == null ? [] : baseValues(object, keysIn(object)); |
| 24584 | } |
| 24585 | |
| 24586 | /*------------------------------------------------------------------------*/ |
| 24587 |
nothing calls this directly
no test coverage detected