For the complete documentation index, see llms.txt. This page is also available as Markdown.

typeof()

@function typeof($value) {
  @if $value == true or $value == false {
    @return 'boolean';
  } @else {
    @return type-of($value);
  }
}

Last updated