MCPcopy Index your code
hub / github.com/dunky11/react-saas-template / values

Function values

src/shared/functions/toArray.js:949–951  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

947 * // => ['h', 'i']
948 */
949function values(object) {
950 return object ? baseValues(object, keys(object)) : [];
951}
952
953module.exports = toArray;

Callers

nothing calls this directly

Calls 2

baseValuesFunction · 0.85
keysFunction · 0.85

Tested by

no test coverage detected