MCPcopy Create free account
hub / github.com/RubyLouvre/anu / values

Function values

test/babel.js:29058–29060  ·  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

(object)

Source from the content-addressed store, hash-verified

29056 * // => ['h', 'i']
29057 */
29058 function values(object) {
29059 return object == null ? [] : baseValues(object, keys(object));
29060 }
29061
29062 module.exports = values;
29063

Callers 1

includesFunction · 0.85

Calls 2

baseValuesFunction · 0.85
keysFunction · 0.85

Tested by

no test coverage detected