@charset 'UTF-8';

////
/// Flavor SCSS Types Boolean
/// @group types-boolean
/// @author blackmirror1980
////

/// Checks if a value is a boolean value
///
/// @access public
/// @param {boolean} $b - the value to check
/// @return {boolean} - true if is a boolean value
@function is-boolean($b) {
  @return is-defined($b) and type-of($b)==bool;
}
