DEV Community

Discussion on: Write CSS variables faster in SCSS

Collapse
 
equinusocio profile image
Mattia Astorino • Edited

Can your function be rewritten like this?

@function myVariable($variable, $true-val:false) {
  @if $use-css-var == true and $true-val == true  {
    @return map-get($variables, $variable); //True Val
  } @else {
    @return var(#{$variable-prefix}#{$variable}); //CSS Var
  }
}