@function getMap()
Similar to get, only now you have to declare the map. Example:
$something: getMap($configuration, spacing, xxl);
If a value is nested further deep, you can use the syntax bellow.
background: getMap($map , parent , child, child);
background: getMap($configuration, bootstrap, color, bs-success);
Will return the color set for the specific value pair.
Parameters & Return
$map: ( map )
[$configuration] - Source map
$key: ( string )
Takes a key and if it exists in configuration
@return ( * )
Returns the value/es that exist in the key.