Lines Matching defs:values
178 * Returns an array containing the values of the object's enumerable keys.
180 * Note that values are returned in enumeration order (that is, in the same
186 * Y.Object.values({a: 'foo', b: 'bar', c: 'baz'});
189 * @method values
191 * @return {Array} Array of values.
194 O.values = function (obj) {
198 values = [];
201 values.push(obj[keys[i]]);
204 return values;
234 return Y.Array.indexOf(O.values(obj), value) > -1;