MCPcopy
hub / github.com/lodash/lodash / valuesIn

Function valuesIn

lodash.js:14055–14057  ·  view source on GitHub ↗

* Creates an array of the own and inherited enumerable string keyed property * values of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @since 3.0.0 * @category Object * @param {Object} object The object to q

(object)

Source from the content-addressed store, hash-verified

14053 * // => [1, 2, 3] (iteration order is not guaranteed)
14054 */
14055 function valuesIn(object) {
14056 return object == null ? [] : baseValues(object, keysIn(object));
14057 }
14058
14059 /*------------------------------------------------------------------------*/
14060

Callers

nothing calls this directly

Calls 2

baseValuesFunction · 0.85
keysInFunction · 0.85

Tested by

no test coverage detected