Sha256: 6742d9de148a49585ff422a3c62914af144ca9afb5b516aaa6d745e58698f861

Contents?: true

Size: 576 Bytes

Versions: 54

Compression:

Stored size: 576 Bytes

Contents

// $nのときにtrue
@function equal_nth($value, $n)
  @if length($value) == $n
    @return true
  @else
    @return null

// $n以上のときにtrue
@function or_more_nth($value, $n)
  @if length($value) >= $n
    @return true
  @else
    @return null

// $n以下のときにtrue
@function or_less_nth($value, $n)
  @if length($value) <= $n
    @return true
  @else
    @return null

// $n以上のときだけ$valueを出す
@function optional_nth($value, $n, $false-value: null)
  @if or_more_nth($value, $n)
    @return nth($value, $n)
  @else
    @return $false-value

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
oulu-0.19.1 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.19.0 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.18.5 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.18.4 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.18.3 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.18.2 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.18.1 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.18.0 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.9 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.8 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.7 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.6 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.4 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.3 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.2 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.1 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.17.0 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.16.9 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.16.8 app/assets/stylesheets/settings/functions/_length.sass
oulu-0.16.7 app/assets/stylesheets/settings/functions/_length.sass