Typed wrapper around Object.values that preserves the value type.
Object.values
The source object.
objectValues({ a: 1, b: 2 }) // => [1, 2] (typed as number[]) Copy
objectValues({ a: 1, b: 2 }) // => [1, 2] (typed as number[])
Typed wrapper around
Object.valuesthat preserves the value type.