You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vizality/renderer/src/styles/utils/functions/_str-replace.scss

9 lines
347 B

// Helper function to replace characters in a string
@function str-replace($string, $search, $replace-with: '') {
$index: str-index($string, $search);
@return if($index,
str-slice($string, 1, $index - 1) + $replace-with +
str-replace(str-slice($string, $index +
str-length($search)), $search, $replace-with),
$string);
}