Sha256: 7e64945736949a6b1caccb19234ba8c66f125ce1dfc180f6549d156646ac49ae
Contents?: true
Size: 306 Bytes
Versions: 1
Compression:
Stored size: 306 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 {boolean} @function contains-falsy($list) { @each $item in $list { @if not $item { @return true; } } @return false; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bourbon-5.0.0.alpha.0 | core/bourbon/functions/_contains-falsy.scss |