* 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 to query. * @returns {Array} Returns the array
(object)
| 29056 | * // => ['h', 'i'] |
| 29057 | */ |
| 29058 | function values(object) { |
| 29059 | return object == null ? [] : baseValues(object, keys(object)); |
| 29060 | } |
| 29061 | |
| 29062 | module.exports = values; |
| 29063 |
no test coverage detected