Is there a way to pass an array to a mixin as parameter? Something like this:
.myMixin(@color, @array){
...
}
.myMixin('red',['one','two','three']);
The only way I could pass an array was when calling myMixin as following:
@array: one, two, three;
.myMixin('red',@array);
this mixin needs to be called many times - I don't want to set the @array variable for each call, but to pass it straight to the mixin as parameter. Is it possible?