Files
core/test/helper/utils.helper.ts
2021-10-22 21:47:53 +08:00

6 lines
246 B
TypeScript

export const firstOfMap = <K, V>(map: Map<K, V>) => [...map.entries()]?.[0]
export const firstKeyOfMap = <K, V>(map: Map<K, V>) =>
[...map.entries()]?.[0][0]
export const firstValueOfMap = <K, V>(map: Map<K, V>) =>
[...map.entries()]?.[0][1]