SASS : Check if a variable is a map

6.5k Views Asked by At

Is there something like is-map($some_variable) in SASS?

I have tried looking into the documentation but there is none there.

1

There are 1 best solutions below

2
On

You can implement it with the type-of function, like this one:

@function is-map($var){
  @return type-of($var) == 'map';
}