rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
13 lines • 364 B
text/typescript
/**
* @public
* Converts a `Map` into an `Array` of its key value pairs.
*
* @returns An array of tuples, the first value corresponding to the key and the second to the value.
*
* @remarks
* See {@link mapEntriesToArray}.
*/
export function mapEntriesToArray<TKey, TValue>(map: Map<TKey, TValue>): [TKey, TValue][]
{
return Array.from(map.entries());
}