Return all of the values of the object's properties.
返回对象的所有属性的值
1 _.values({one : 1, two : 2, three : 3}); 2 => [1, 2, 3]
源码:
1 _.values = function(obj) { 2 return _.map(obj, _.identity); 3 };