Skip to content

Instantly share code, notes, and snippets.

@dragstarcrowant
Created October 8, 2015 08:50
Show Gist options
  • Save dragstarcrowant/7f709e9b1778c94b0161 to your computer and use it in GitHub Desktop.
Save dragstarcrowant/7f709e9b1778c94b0161 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@function _ss-str-repeat($string, $times, $glue) {
$result: "";
$a: ('s', 'ss');
@for $i from 1 through $times {
@if ($result != "") {
//$result: $result + $glue;
//$a: append($result, $string , 'comma');
$result: append($result, nth($result, length($result))+$glue+$string, 'comma');
} @else{
$result: $result+$string;
}
//$result: $result + $string;
}
@return $result;
}
#{_ss-str-repeat('li', 4, '+')} {
border: 1px solid #000;
}
li, li + li, li + li + li, li + li + li + li {
border: 1px solid #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment