(object: {
[K in Key]: Value
})
| 89 | * @internal |
| 90 | */ |
| 91 | export function objectMapValues<Key extends string, Value>(object: { |
| 92 | [K in Key]: Value |
| 93 | }): Array<Value> { |
| 94 | return Object.values(object) as Value[] |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * An alias for `Object.entries` that treats the object as a map and so preserves the type of the |
no test coverage detected
searching dependent graphs…