mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
|
export const toObject = <T>(map: Map<string, T>): Record<string, T> => {
|
||
|
return Object.fromEntries(map.entries());
|
||
|
};
|
||
|
|
||
|
export const toArray = <T>(map: Map<string, T>): [string, T][] => {
|
||
|
return Array.from(map.entries());
|
||
|
};
|