* Creates an array of the own and inherited 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} Ret
(object)
| 11449 | * // => [1, 2, 3] (iteration order is not guaranteed) |
| 11450 | */ |
| 11451 | function valuesIn(object) { |
| 11452 | return baseValues(object, keysIn(object)); |
| 11453 | } |
| 11454 | |
| 11455 | /*------------------------------------------------------------------------*/ |
| 11456 |
nothing calls this directly
no test coverage detected