consul/consul

View on GitHub
app/assets/stylesheets/functions/reverse_list.scss

Summary

Maintainability
Test Coverage
@function reverse-list($list) {
  $reversed: [];

  @for $i from length($list) * -1 through -1 {
    $reversed: append($reversed, nth($list, abs($i)));
  }

  @return $reversed;
}