utils/mapsequal
module
Functions
-
mapsEqual( mapA, mapB ) → boolean
module:utils/mapsequal~mapsEqual
Checks whether given
Map
s are equal, that is has same size and same key-value pairs.Type parameters
Key
Parameters
mapA : Map<Key, unknown>
The first map to compare.
mapB : Map<Key, unknown>
The second map to compare.
Returns
boolean
true
if given maps are equal,false
otherwise.