@tempots/std
objectValues() function
Returns an array of values from the given object.
Signature:
objectValues: <T extends object>(obj: T) => Array<T[keyof T]>
Parameters
Parameter |
Type |
Description |
---|---|---|
obj |
T |
The object from which to extract values. |
Returns: Array<T[keyof T]>
An array of values from the object.