@function str-reverse($string) {
  @if type-of($string) != "string" {
    @error "`str-reverse` function expecting a string for $string; #{type-of($string)} given.";
  }

  @return _ss-str-reverse($string);
}
