MCPcopy Create free account
hub / github.com/dtmilano/AndroidViewClient / values

Function values

docs/_static/underscore-1.13.1.js:533–541  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

531
532 // Retrieve the values of an object's properties.
533 function values(obj) {
534 var _keys = keys(obj);
535 var length = _keys.length;
536 var values = Array(length);
537 for (var i = 0; i < length; i++) {
538 values[i] = obj[_keys[i]];
539 }
540 return values;
541 }
542
543 // Convert an object into a list of `[key, value]` pairs.
544 // The opposite of `_.object` with one argument.

Callers 5

containsFunction · 0.85
maxFunction · 0.85
minFunction · 0.85
sampleFunction · 0.85
toArrayFunction · 0.85

Calls 1

keysFunction · 0.85

Tested by

no test coverage detected