Returns an array of all enumerable property values for an object.
The object to extract values from
Whether to include values from the prototype chain
An array of property values
const values = ownValues({ a: 1, b: 2 }); Copy
const values = ownValues({ a: 1, b: 2 });
Returns an array of all enumerable property values for an object.