@charset 'UTF-8';

////
/// Flavor SCSS Types Function
/// @group types-function
/// @author blackmirror1980
////

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