You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
483 B
27 lines
483 B
7 years ago
|
@charset "UTF-8";
|
||
|
|
||
|
/// Checks if a list contains a value(s).
|
||
|
///
|
||
|
/// @access private
|
||
|
///
|
||
|
/// @param {List} $list
|
||
|
/// The list to check against.
|
||
|
///
|
||
|
/// @param {List} $values
|
||
|
/// A single value or list of values to check for.
|
||
|
///
|
||
|
/// @example scss - Usage
|
||
|
/// contains($list, $value)
|
||
|
///
|
||
|
/// @return {Bool}
|
||
|
|
||
|
@function contains($list, $values...) {
|
||
|
@each $value in $values {
|
||
|
@if type-of(index($list, $value)) != "number" {
|
||
|
@return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@return true;
|
||
|
}
|