Returns an array of the values of a given object.
values({ a: 1, b: 2, c: 3 }) // [1, 2, 3] Copy
values({ a: 1, b: 2, c: 3 }) // [1, 2, 3]
The type of the object values.
The object to extract the values from.
An array of the object values.
Returns an array of the values of a given object.
Example