MCPcopy Index your code
hub / github.com/deployd/deployd / valuesIn

Function valuesIn

test-app/public/sinon.js:24582–24584  ·  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 * @p

(object)

Source from the content-addressed store, hash-verified

24580 * // => [1, 2, 3] (iteration order is not guaranteed)
24581 */
24582 function valuesIn(object) {
24583 return object == null ? [] : baseValues(object, keysIn(object));
24584 }
24585
24586 /*------------------------------------------------------------------------*/
24587

Callers

nothing calls this directly

Calls 2

baseValuesFunction · 0.85
keysInFunction · 0.85

Tested by

no test coverage detected