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

  @return _ss-str-word-count($string);
}
