getLastMapEntry
getLastMapEntry<
K,V>(map):undefined| [K,V]
Defined in: utils/map.ts:47
Returns the last entry in the provided map. If the map is empty, the function returns undefined.
Type Parameters
Section titled “Type Parameters”K = any
V = any
Parameters
Section titled “Parameters”Map<K, V>
The map to get the last entry from.
Returns
Section titled “Returns”undefined | [K, V]
The last entry in the map, or undefined if the map is empty.