SIGN IN SIGN UP

A modern JavaScript utility library delivering modularity, performance, & extras.

0 0 2051 JavaScript
2016-01-28 01:16:24 -08:00
define(['./_baseValues', './keysIn'], function(baseValues, keysIn) {
2015-01-08 00:37:01 -08:00
/**
2016-03-26 00:00:01 -07:00
* Creates an array of the own and inherited enumerable string keyed property
* values of `object`.
2015-01-08 00:37:01 -08:00
*
* **Note:** Non-object values are coerced to objects.
*
* @static
* @memberOf _
2016-03-26 00:00:01 -07:00
* @since 3.0.0
2015-01-08 00:37:01 -08:00
* @category Object
* @param {Object} object The object to query.
* @returns {Array} Returns the array of property values.
* @example
*
* function Foo() {
* this.a = 1;
* this.b = 2;
* }
*
* Foo.prototype.c = 3;
*
* _.valuesIn(new Foo);
* // => [1, 2, 3] (iteration order is not guaranteed)
*/
function valuesIn(object) {
2016-02-15 20:20:54 -08:00
return object == null ? [] : baseValues(object, keysIn(object));
2015-01-08 00:37:01 -08:00
}
return valuesIn;
});