Guest User

Untitled

a guest
Oct 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // =============================================================================
  2. // String Replace
  3. // =============================================================================
  4.  
  5. @function str-replace($string, $search, $replace: "") {
  6. $index: str-index($string, $search);
  7.  
  8. @if $index {
  9. @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
  10. }
  11.  
  12. @return $string;
  13. }
Add Comment
Please, Sign In to add comment