SU-SWS/decanter

View on GitHub
core/src/scss/utilities/functions/type-checks/_is-length.scss

Summary

Maintainability
Test Coverage

///
/// Validates wether something is an length unit
///
/// @name is-length
///
/// @param {Integer} $value - the value to type check
///
/// @group mixin
@function is-length($value) {
  @return is-relative-length($value) or is-absolute-length($value);
}