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

Function baseValues

test-app/public/sinon.js:11644–11648  ·  view source on GitHub ↗

* The base implementation of `_.values` and `_.valuesIn` which creates an * array of `object` property values corresponding to the property names * of `props`. * * @private * @param {Object} object The object to query. * @param {Array} props The property nam

(object, props)

Source from the content-addressed store, hash-verified

11642 * @returns {Object} Returns the array of property values.
11643 */
11644 function baseValues(object, props) {
11645 return arrayMap(props, function(key) {
11646 return object[key];
11647 });
11648 }
11649
11650 /**
11651 * Checks if a `cache` value for `key` exists.

Callers 3

valuesFunction · 0.85
valuesInFunction · 0.85
templateFunction · 0.85

Calls 1

arrayMapFunction · 0.85

Tested by

no test coverage detected