MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / valuesIn

Function valuesIn

lib/web/jshint.js:11451–11453  ·  view source on GitHub ↗

* Creates an array of the own and inherited enumerable property values * of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Ret

(object)

Source from the content-addressed store, hash-verified

11449 * // => [1, 2, 3] (iteration order is not guaranteed)
11450 */
11451 function valuesIn(object) {
11452 return baseValues(object, keysIn(object));
11453 }
11454
11455 /*------------------------------------------------------------------------*/
11456

Callers

nothing calls this directly

Calls 2

baseValuesFunction · 0.85
keysInFunction · 0.85

Tested by

no test coverage detected