Sha256: e339b05682457c14b4d205a56813e59f1d6b0bfe8bf272eeff23ad7c02c8f38b
Contents?: true
Size: 470 Bytes
Versions: 38
Compression:
Stored size: 470 Bytes
Contents
@charset "UTF-8"; /// Checks if a list does not contains a value. /// /// @access private /// /// @param {List} $list /// The list to check against. /// /// @return {Bool} @function contains-falsy($list) { @if $output-bourbon-deprecation-warnings == true { @warn "[Bourbon] [Deprecation] `contains-falsy` is deprecated and will be " + "removed in 5.0.0."; } @each $item in $list { @if not $item { @return true; } } @return false; }
Version data entries
38 entries across 38 versions & 6 rubygems