Sha256: 4f8a1ec05c8eb1c98c08502e4eee56fabc8add06b13fe708a7b21c8c7a485e76

Contents?: true

Size: 160 Bytes

Versions: 7

Compression:

Stored size: 160 Bytes

Contents

// Repeat a list
@function repeat($count, $repeat) {
  $list: $repeat;
  @for $i from 2 through $count {
    $list: join($repeat, $list);
  }
  @return $list;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
singularity-extras-1.0.0 stylesheets/singularity-extras/helpers/_repeat.scss
singularity-extras-1.0.0.alpha.3 stylesheets/singularity-extras/helpers/_repeat.scss
singularity-extras-1.0.0.alpha.2 stylesheets/singularity-extras/helpers/_repeat.scss
singularity-extras-1.0.0.alpha.1 stylesheets/singularity-extras/helpers/_repeat.scss
singularity-extras-0.0.3 stylesheets/singularity-extras/helpers/_repeat.scss
singularity-extras-0.0.2 stylesheets/singularity-extras/helpers/_repeat.scss
singularity-extras-0.0.1 stylesheets/singularity-extras/helpers/_repeat.scss