Home > rc-js-util > mapValuesToArray
Converts a Map into an Array of its values.
Signature:
export declare function mapValuesToArray<TKey, TValue>(map: Map<TKey, TValue>): TValue[];
| Parameter | Type | Description |
|---|---|---|
| map | Map<TKey, TValue> |
Returns:
TValue[]
The values of map.
See mapValuesToArray().