Mercurial > nebulaweb3
annotate default/assets/scss/vendors/bourbon/validators/_contains-falsy.scss @ 0:1d038bc9b3d2 default tip
Up:default
author | Liny <dev@neowd.com> |
---|---|
date | Sat, 31 May 2025 09:21:51 +0800 |
parents | |
children |
rev | line source |
---|---|
0 | 1 @charset "UTF-8"; |
2 | |
3 /// Checks if a list does not contains a value. | |
4 /// | |
5 /// @argument {list} $list | |
6 /// The list to check against. | |
7 /// | |
8 /// @return {boolean} | |
9 /// | |
10 /// @access private | |
11 | |
12 @function _contains-falsy($list) { | |
13 @each $item in $list { | |
14 @if not $item { | |
15 @return true; | |
16 } | |
17 } | |
18 | |
19 @return false; | |
20 } |