* 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 of proper
(object)
| 947 | * // => ['h', 'i'] |
| 948 | */ |
| 949 | function values(object) { |
| 950 | return object ? baseValues(object, keys(object)) : []; |
| 951 | } |
| 952 | |
| 953 | module.exports = toArray; |
nothing calls this directly
no test coverage detected