* 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 * @param {Object} object The object to q
(object)
| 14053 | * // => [1, 2, 3] (iteration order is not guaranteed) |
| 14054 | */ |
| 14055 | function valuesIn(object) { |
| 14056 | return object == null ? [] : baseValues(object, keysIn(object)); |
| 14057 | } |
| 14058 | |
| 14059 | /*------------------------------------------------------------------------*/ |
| 14060 |
nothing calls this directly
no test coverage detected