UNPKG

361 BSCSSView Raw
1@import 'restyle/noconflict';
2
3$data: (
4 function: (restyle, -restyle--main),
5 mixin: (restyle, -restyle--main)
6);
7
8@each $type, $names in $data {
9 @each $name in $names {
10 // TODO - support variable-exists as well
11 $existsFn: "#{$type}-exists";
12 $result: call(get-function($existsFn), $name);
13 /* #{$type} `#{$name}` exists? #{$result} */
14 }
15}