Sha256: c82372e920c96de666fbe89a35dd0936437b1f0b95d7d21712e6208581742b3f
Contents?: true
Size: 664 Bytes
Versions: 24
Compression:
Stored size: 664 Bytes
Contents
// Steal value based on index number // ------------------------------------------------------------------------------- // @dependence `map-fetch()` // @dependence `get-value()` // ------------------------------------------------------------------------------- // @param $index [Value] : index of breakpoint key in config // @param $value [Value] : value // ------------------------------------------------------------------------------- // @return [Value] @function steal-values($index, $value) { @for $n from 1 through (length(map-fetch($flint, config)) - 1) { @each $key in nth(map-get($flint, config), $index) { @return get-value($key, $value); } } }
Version data entries
24 entries across 24 versions & 1 rubygems