////////////////////////////////////////////////////////////////////////////////
/// Unit                                                                #is-unit
////////////////////////////////////////////////////////////////////////////////
///
/// Checks to see if value ends with any type of unit
///
/// @author Hugo Giraudel
///
/// @link https://css-tricks.com/snippets/sass/advanced-type-checking/
///

///
/// @group helpers-checks
///
/// @require {function} is-relative-length
/// @require {function} is-absolute-length
///
/// @return {bool}

@use 'sass:math';

@function is-unit($value) {
  @return math.unit($value) != '';
}
