The following code will create an empty map in the variable $test
, but is there a proper way to accomplish the this? This seems too hackish to be the best way to get an empty map.
$test: map-remove((default:null), 'default');
@if type-of($test) != map {
@warn "This is not a map: #{inspect($test)}";
}
@else {
@warn "This is a map: #{inspect($test)}";
}
WARNING: This is a map: ()
on line 7 of app/styles/functions/map.scss
There is no better native way to do that, but you could make it shorter.
Another solution would be to use a custom function.
SassMeister demo