utils/mapsequal
module
Functions
mapsEqual( mapA, mapB ) → booleanmodule:utils/mapsequal~mapsEqualChecks whether given
Maps 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
booleantrueif given maps are equal,falseotherwise.